廖井涛
2024-03-07 012a7061f18eaa5524747dc60faae131831793fe
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,10 +20,14 @@
    private String productionId;
    //流程卡号
    private String processId;
    //落架顺序
    private Integer landingSequence;
    //序号
    private Integer orderNumber;
    //工艺确认序号
    private Integer technologyNumber;
    //分架数量
    private Integer quantity;
    //已优化数量
    private Integer optimizeQuantity;
    //排版状态
@@ -61,4 +67,6 @@
    private OrderDetail orderDetail;
    //外键订单工艺审核表
    private OrderGlassDetail orderGlassDetail;
    private  Product product;
}