guoyuji
2024-01-23 a6c70be014537e9b5ed48e68edaf3a1a94cb1ac7
north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
New file
@@ -0,0 +1,61 @@
package com.example.erp.entity.pp;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDate;
public class FlowCard {
    @TableId(type = IdType.AUTO)
    //自增id
    private Integer id;
    //销售单号
    private String orderId;
    //生产订单号
    private String productionId;
    //流程卡号
    private String processId;
    //序号
    private Integer orderNumber;
    //工艺确认序号
    private Integer technologyNumber;
    //已优化数量
    private Integer optimizeQuantity;
    //排版状态
    private Integer layoutStatus;
    //补片数量
    private Integer numberPatches;
    //库存数量
    private Integer inventoryQuantity;
    //已入数量
    private Integer receivedQuantity;
    //补片编号
    private String patchId;
    //工程占用
    private Integer engineeringOccupancy;
    //库存数量
    private Integer inventoryNumber;
    //入库时间
    private LocalDate storageTime;
    //生产终止状态
    private Integer terminationStatus;
    //打印状态
    private Integer printStatus;
    //备用键
    private String alternateKey;
    //分架员
    private String founder;
    //分架时间
    private LocalDate splitFrameTime;
    //建立时间
    private LocalDate createTime;
    //修改时间
    private LocalDate updateTime;
    //外键订单表
//    private Order order;
//    //外键订单明细表
//    private OrderDetail orderDetail;
//    //外键订单工艺审核表
//    private orderGlassDetail orderGlassDetail;
}