using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { /// /// 退料 /// public class ICSMOApplyNeg { /// /// 生产退料申请号 /// public string MOApplyNegCode { get; set; } /// /// 操作人 /// public string User { get; set; } /// /// 操作时间 /// public string MTime { get; set; } /// /// 仓库编码 /// public string WHCode { get; set; } /// /// 表头ID /// public string ID { get; set; } /// /// 单据类型 /// public string Type { get; set; } public string WorkPoint { get; set; } public List detail = new List(); public class ICSMOApplyNegDetail { /// /// 表体ID /// public string DetailID { get; set; } /// /// 行号 /// public string Sequence { get; set; } /// /// 料品编码 /// public string InvCode { get; set; } /// /// 数量 /// public string Quantity { get; set; } /// /// 辅计量数量 /// public string Amount { get; set; } /// /// 源头单据表体ID /// public string SourceDetailID { get; set; } /// /// 自由项ID /// public string ExtensionID { get; set; } public string WorkPoint { get; set; } } } }