package com.gs.xky.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 MES_INV_ITEM_ARN_DETAIL
|
*/
|
@TableName(value = "MES_INV_ITEM_ARN_DETAIL")
|
@Data
|
public class MesInvItemArnDetail implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
* SEQ_INV_ID
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 主表ID
|
*/
|
private Long mid;
|
/**
|
* 采购单号
|
*/
|
private String ebeln;
|
/**
|
* 采购订单行号
|
*/
|
private Long ebelnLine;
|
/**
|
* 采购订单数量
|
*/
|
private Long ebelnQty;
|
/**
|
* 物料编码
|
*/
|
private String itemNo;
|
/**
|
* 收货数量
|
*/
|
private Long quantity;
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
/**
|
* 创建时间
|
*/
|
private Date createDate;
|
/**
|
* 最后更新人
|
*/
|
private String lastupdateBy;
|
/**
|
* 最后更新时间
|
*/
|
private Date lastupdateDate;
|
/**
|
* 分厂编码
|
*/
|
private String factory;
|
/**
|
* 公司代码
|
*/
|
private String company;
|
/**
|
* 采购单ID
|
*/
|
private Long ebelnK3id;
|
/**
|
* 采购单行ID
|
*/
|
private Long lineK3id;
|
/**
|
* 本次应收数量
|
*/
|
private Long subQty;
|
/**
|
* 余量
|
*/
|
private Long marginQty;
|
/**
|
* 任务单号
|
*/
|
private String workNo;
|
/**
|
* 急料标识
|
*/
|
private Long urgentFlag;
|
/**
|
* 备注
|
*/
|
private String memo;
|
/**
|
* 检验结果
|
*/
|
private String checkRes;
|
/**
|
* 检验状态 (待检、分选、特采、已检)
|
*/
|
private String checkStates;
|
/**
|
* 收货余量
|
*/
|
private Long quantityM;
|
/**
|
* 本次应收余量
|
*/
|
private Long subMqty;
|
/**
|
* 检验日期
|
*/
|
private Date checkDate;
|
/**
|
* 是否检验
|
*/
|
private Integer ischeck;
|
/**
|
* 已收数量
|
*/
|
private Long okQty;
|
/**
|
* 已收余量
|
*/
|
private Long okMqty;
|
/**
|
* 产品型号
|
*/
|
private String boardStyle;
|
/**
|
* 任务单行号
|
*/
|
private Long workLine;
|
/**
|
* 0、采购单,1、委外单
|
*/
|
private Long fType;
|
/**
|
* 是否入库
|
*/
|
private Integer isdepsIn;
|
/**
|
* 到货单号
|
*/
|
private String dha001;
|
/**
|
* 已入库数量
|
*/
|
private Long okRkqty;
|
/**
|
* 到货单号
|
*/
|
private String cbillNo;
|
/**
|
* 采购入库数量
|
*/
|
private Long cgRkqty;
|
/**
|
* 物料ID
|
*/
|
private Long itemId;
|
/**
|
* 退货标识
|
*/
|
private Long returnFlag;
|
/**
|
* 销售订单号
|
*/
|
private String salesOrder;
|
/**
|
* 专用物料标识
|
*/
|
private Long isZy;
|
/**
|
* 入库完成时间
|
*/
|
private Date rkDate;
|
/**
|
* 计划跟踪号
|
*/
|
private String fmtono;
|
/**
|
* 供协单号
|
*/
|
private String deliveryNo;
|
/**
|
* 供协分录内码
|
*/
|
private Long deliveryLine;
|
}
|