using System; using System.ComponentModel; using WMS.Attirubte; namespace WMS.Model.SC { /// /// 领退料通知单回传 头记录 :实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] [TableClmAttribute(TableName = "CUX_WMS_COMPLETE_HEADERS_ITF")] public class Mod_CUX_WMS_COMPLETE_HEADERS_ITF { #region Model private string _wms_no; private int _mat_req_header_id; private int _rec_type; private int _mat_req_num; private DateTime _mat_issue_date; private string _io_type; private string _organization_code_apply; private string _organization_code_issue; private int _vendor_id; private string _attribute1; private string _attribute2; private string _attribute3; private string _attribute4; private string _attribute5; private int _status; /// /// wms系统号(如果有多个WMS系统,作为区别) /// [DisplayName("wms系统号")] public string WMS_NO { set{ _wms_no=value;} get{return _wms_no;} } /// /// 单据头主键ID /// [DisplayName("单据头主键ID")] public int MAT_REQ_HEADER_ID { set{ _mat_req_header_id=value;} get{return _mat_req_header_id;} } /// /// 1-子库转移中的入库方(EBS早于WMS增加了库存,WMS作入库登记后EBS不再增加库存),2-其他 /// [DisplayName("类型")] public int REC_TYPE { set{ _rec_type=value;} get{return _rec_type;} } /// /// 申请单号 /// [DisplayName("申请单号")] public int MAT_REQ_NUM { set{ _mat_req_num=value;} get{return _mat_req_num;} } /// /// 发料日期 /// [DisplayName("发料日期")] public DateTime MAT_ISSUE_DATE { set{ _mat_issue_date=value;} get{return _mat_issue_date;} } /// /// 推式领料:35:WIP发料(工单需求),43:WIP退料,34 工单补料拉式领料:1:拉式发料,2:拉式退料非BOM领料:11:非BOM出库,21:非BOM入库,12:报废出,22:报废入,13:盘亏调整,23:盘盈调整,31:VMI转仓,32:子库转移,33:跨组织直接转移 /// [DisplayName("推式领料")] public string IO_TYPE { set{ _io_type=value;} get{return _io_type;} } /// /// 申请组织代码 /// [DisplayName("申请组织代码")] public string ORGANIZATION_CODE_APPLY { set{ _organization_code_apply=value;} get{return _organization_code_apply;} } /// /// 发货组织代码 /// [DisplayName("发货组织代码")] public string ORGANIZATION_CODE_ISSUE { set{ _organization_code_issue=value;} get{return _organization_code_issue;} } /// /// 供应商ID /// [DisplayName("供应商ID")] public int VENDOR_ID { set{ _vendor_id=value;} get{return _vendor_id;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE1 { set{ _attribute1=value;} get{return _attribute1;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE2 { set{ _attribute2=value;} get{return _attribute2;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE3 { set{ _attribute3=value;} get{return _attribute3;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE4 { set{ _attribute4=value;} get{return _attribute4;} } /// /// 备用 /// [DisplayName("备用")] public string ATTRIBUTE5 { set{ _attribute5=value;} get{return _attribute5;} } /// /// 状态(1:未处理;2:错误;3:成功) /// [DisplayName("状态")] public int STATUS { set{ _status=value;} get{return _status;} } #endregion Model } }