namespace RB_MES_APICore.Models.Pangu { /// /// 其它出库单实体 /// public class R100 { /// /// 唯一序号 /// public string QUEUE_ID { get; set; } = string.Empty; /// /// 部门 /// public string DEPT_ID { get; set; } = string.Empty; /// /// 交易时间 /// public string TRX_DATE { get; set; } = string.Empty; /// /// 仓库编码 /// public string STORE_ID { 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 SRTYPE_ID { get; set; } = string.Empty; /// /// 批次 /// public string ERP_LOTNO { get; set; } = string.Empty; /// /// 储位 /// //public string STORELOC_ID { get; set; } = string.Empty; /// /// 辅助属性 /// public string MTRL_VER { get; set; } = string.Empty; /// /// 领料人 /// public string StaffNumber { get; set; } = string.Empty; /// /// 项目编号# /// public string PM_ID { get; set; } = string.Empty; /// /// 项目名称# /// public string PM_NAME { get;set; } = string.Empty; /// /// 项目阶段# /// public string PM_STATUS { get; set; } = string.Empty; /// /// OA流程号(行)# /// public string OA_ID { get; set; } = string.Empty; /// /// 合同项目# /// public string CPA { get;set; } = string.Empty; } }