chenlu
2024-03-15 dbec8a881baf27254a13f1f9c7b0167b9f064ab5
north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
@@ -5,9 +5,11 @@
import com.example.erp.entity.sd.Order;
import com.example.erp.entity.sd.OrderDetail;
import com.example.erp.entity.sd.OrderGlassDetail;
import com.example.erp.entity.sd.Product;
import lombok.Data;
import java.time.LocalDate;
@Data
public class FlowCard {
    @TableId(type = IdType.AUTO)
    //自增id
@@ -18,14 +20,18 @@
    private String productionId;
    //流程卡号
    private String processId;
    //落架顺序
    private Integer landingSequence;
    //序号
    private Integer orderNumber;
    //工艺确认序号
    private Integer technologyNumber;
    //分架数量
    private Integer quantity;
    //已优化数量
    private Integer optimizeQuantity;
    //排版状态
    private Integer layoutStatus;
    private String layoutStatus;
    //补片数量
    private Integer numberPatches;
    //库存数量
@@ -61,4 +67,6 @@
    private OrderDetail orderDetail;
    //外键订单工艺审核表
    private OrderGlassDetail orderGlassDetail;
    private  Product product;
}