namespace RB_MES_APICore.Models.Pangu { /// /// 委外退料单实体 /// public class R019_1 { /// /// 唯一序号 /// public string QUEUE_ID { get; set; } = string.Empty; /// /// 交易时间 /// public string TRX_DATE { get; set; } = string.Empty; /// /// 仓库编码 /// public string STORE_ID { get; set; } = string.Empty; /// /// ERP委外用料清单 /// public string ERP_MO { get; set; } = string.Empty; /// /// 物料编码 /// public string MTRL_ID { get; set; } = string.Empty; /// /// 数量 /// public string QUANTITY { get; set; } = string.Empty; /// /// 备注 /// public string REMARK { get; set; } = string.Empty; /// /// 委外用订单行号 /// public string MO_SEQ { get; set; } = string.Empty; /// /// 主物料编码 /// public string MAIN_ID { get; set; } = string.Empty; /// /// 辅助属性 /// public string MTRL_VER { get; set; } = string.Empty; /// /// 批次 /// public string ERP_LOTNO { get; set; } = string.Empty; /// /// ERP委外用料清单明细 /// public string SEQ { get; set; } = string.Empty; ///// ///// 供应商编码 ///// //public string SUP_ID { get; set; } = string.Empty; ///// ///// 委外单编码 ///// //public string WW_ID { get; set; } = string.Empty; ///// ///// 储位 ///// //public string STORELOC_ID { get; set; } = string.Empty; /// /// 退料类型 /// public string TL_TYPE { get; set; } = string.Empty; } }