guoyujie
2025-11-17 613e4e92157dd697629dbad17fd091ae37637bc7
north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.example.erp.entity.sd.Order;
import com.example.erp.entity.sd.OrderDetail;
import com.example.erp.entity.sd.OrderGlassDetail;
@@ -11,6 +12,7 @@
import java.time.LocalDate;
@Data
@TableName("pp.`flow_card`")
public class FlowCard {
    @TableId(type = IdType.AUTO)
    //自增id
@@ -66,12 +68,17 @@
    private Integer importNumber;
    //订单转移导出数量
    private Integer exportNumber;
    //连线状态(0不连线1连线,默认1,添加时间
    private Integer onlineStatus;
    //建立时间
    private LocalDate createTime;
    //修改时间
    private LocalDate updateTime;
    //查询用
    //流程卡面积
    @TableField(select = false,exist = false)
    private Double computeGrossArea;
    //标签打印数量
    @TableField(select = false,exist = false)
    private Integer printQuantity;
@@ -97,12 +104,21 @@
    //版图ID
    @TableField(select = false,exist = false)
    private String stockId;
    //小片序号
    @TableField(select = false,exist = false)
    private Integer polysId;
    //小片数量
    @TableField(select = false,exist = false)
    private String glassCount;
    //补片状态
    @TableField(select = false,exist = false)
    private Integer patchState;
    //批次
    @TableField(select = false,exist = false)
    private String batch;
    //产品名称
    @TableField(select = false,exist = false)
    private String productName;
    //外键订单表
    @TableField(select = false,exist= false)
@@ -116,4 +132,6 @@
    @TableField(select = false,exist= false)
    private  Product product;
}