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
|
*/
|
@TableName(value = "MES_INV_ITEM_ARN")
|
@Data
|
public class MesInvItemArn implements Serializable {
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
/**
|
* ID(SEQ_INV_ID)
|
*/
|
@TableId
|
private Long id;
|
/**
|
* 到货单号
|
*/
|
private String billNo;
|
/**
|
* 状态|0-未审核1-审核入库\结案
|
*/
|
private Integer status;
|
/**
|
* 原因
|
*/
|
private String reason;
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
/**
|
* 创建时间
|
*/
|
private Date createDate;
|
/**
|
* 最后更新人
|
*/
|
private String lastupdateBy;
|
/**
|
* 最后更新时间
|
*/
|
private Date lastupdateDate;
|
/**
|
* 单据类型ID
|
*/
|
private Long billTypeId;
|
/**
|
* 事务类型ID
|
*/
|
private Long transactionId;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 送货单号
|
*/
|
private String paperBillNo;
|
/**
|
* 退料人工号
|
*/
|
private String userNoBack;
|
/**
|
* 提交人
|
*/
|
private String checkUser;
|
/**
|
* 提交日期
|
*/
|
private Date checkDate;
|
/**
|
* 入库日期
|
*/
|
private Date insDate;
|
/**
|
* 检验结果
|
*/
|
private String checkRes;
|
/**
|
* 已捡数量
|
*/
|
private Long checkQty;
|
/**
|
* 仓库编码
|
*/
|
private String depotsCode;
|
/**
|
* 事务类型编码
|
*/
|
private String transctionNo;
|
/**
|
* 供应商编码
|
*/
|
private String suppNo;
|
/**
|
* 提交状态
|
*/
|
private Integer fstatus;
|
/**
|
* 工厂编码
|
*/
|
private String factory;
|
/**
|
* 是否已回写SAP
|
*/
|
private Integer sapstatus;
|
/**
|
* 确认入库日期
|
*/
|
private Date insdate;
|
/**
|
* 是否检验
|
*/
|
private Long ischeck;
|
/**
|
* 审核入库人
|
*/
|
private String insby;
|
/**
|
* 公司代码
|
*/
|
private String company;
|
/**
|
* 急料标识
|
*/
|
private Integer urgentFlag;
|
/**
|
* 冲销事务类型编码
|
*/
|
private Long mttransctionNo;
|
/**
|
* IQC检验单号
|
*/
|
private String iqcReleaseNo;
|
/**
|
* 是否显示
|
*/
|
private Long isVisual;
|
/**
|
* 0=采购,1=委外
|
*/
|
private Long fType;
|
/**
|
* ERP到货单ID
|
*/
|
private String ebelnK3id;
|
/**
|
* 条码条印进度
|
*/
|
private Long barcodeRatio;
|
/**
|
* ERP单号
|
*/
|
private String erpno;
|
/**
|
* 是否已退货0-未退货,1-退货
|
*/
|
private Integer thstatus;
|
/**
|
* ERP退货单号
|
*/
|
private String erpthno;
|
/**
|
* 组织编码
|
*/
|
private String organizeCode;
|
}
|