guoyuji
2024-03-15 3c87c3ff67c2193ab5bfaa31f0fb1ad5a68cd5af
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
@@ -4,12 +4,13 @@
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.example.erp.entity.mm.FinishedGoodsInventory;
import lombok.Data;
import java.time.LocalDate;
@Data
@TableName("`order`")
@TableName("sd.`order`")
public class Order {
    @TableId(type = IdType.AUTO)
@@ -57,5 +58,7 @@
    @TableField(value = "customer_id")
    private Customer  customer;
    @TableField(select = false)
    private FinishedGoodsInventory finishedGoodsInventory;
}