package com.hk.NumericalCollection.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import java.io.Serializable; import java.util.Date; /** * 工单表 * @TableName WOMCAA */ @TableName(value ="WOMCAA") @Data public class Womcaa implements Serializable { /** * 自增列 */ @TableId private Long id; /** * ERPID */ private Long erpid; /** * 单号 */ private String caa001; /** * ERP工单批次 */ private String caa002; /** * 客户编号 */ private String caa003; /** * 开单日期 */ private String caa005; /** * 产品编码 */ private String caa006; /** * 产品名称 */ private String caa007; /** * 产品规格 */ private String caa008; /** * 单位 */ private String caa009; /** * 预计开工时间 */ private Date caa010; /** * 预计完工时间 */ private Date caa011; /** * 数量 */ private Long caa012; /** * BOM版次 */ private String caa013; /** * 客户订单号 */ private String caa014; /** * 销售订单号 */ private String caa015; /** * 备注 */ private String caa016; /** * 已排数量 */ private Long caa017; /** * ERP来源ID */ private Long caa018; /** * ERP来源单行号 */ private Long caa019; /** * ERP来源单号(任务单号) */ private String caa020; /** * T100母工单 */ private String caa021; /** * 审核码 */ private Long fstatus; /** * 审核日期 */ private Date checkDate; /** * 审核人 */ private String checkUser; /** * 未排数量 */ private Long caa022; /** * 状态 完工,未完工 */ private String caa023; /** * 已入库数量 */ private Long caa024; /** * 数据审核日 */ private String caa025; /** * 资料创建日 */ private String caa026; /** * 资料录入者 */ private String caa027; /** * 最近更改日 */ private String caa028; /** * 资料更改者 */ private String caa029; /** * 状态码(C:结案F:已发出X:作废) */ private String state; /** * 部门供应商 */ private String suppNo; /** * 转工序人 */ private String caa031; /** * 转工序时间 */ private Date caa032; /** * 拆单数 */ private Long split; /** * 机台编号 */ private String machineNo; /** * 是否排产 */ private Long isPc; /** * 据点 */ private String addressCode; /** * 最后排产人 */ private String pcUser; /** * 最后排产时间 */ private Date pcDate; /** * 是否转工序工单 */ private Long isGx; /** * 工艺编号 */ private String caa030; /** * 是否是工艺工单 */ private Long isGy; /** * 工序编号 */ private String procNo; /** * 工序序号 */ private String procNum; /** * 部门 */ private String departmentNo; /** * 来源单号 */ private String sourceNo; /** * 来源单行号 */ private Long slineNo; /** * 是否快排 */ private Long isKp; /** * 创建人 */ private String createBy; /** * 创建时间 */ private Date createDate; /** * 是否委外 */ private Long caa004; /** * 批号 */ private String lotNo; /** * 工单是否变更 */ private Long isChange; /** * 是否抽样 */ private Long isSample; /** * 抽样个数 */ private Long sampleNum; /** * 餐椅工资型号 */ private String cyModel; @TableField(exist = false) private static final long serialVersionUID = 1L; }