using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Entity { public class ICSOApplyNeg { /// /// 表头ID /// public string id { get; set; } /// /// 委外退料申请号 /// public string OApplyNegCode { get; set; } /// /// 操作人 /// public string User { get; set; } /// /// 操作时间 /// public string MTime { get; set; } /// /// 仓库编码 /// public string WHCode { get; set; } /// /// 站点 /// public string WorkPoint { get; set; } /// /// 单据类型 /// public string Type { get; set; } /// /// 添加表体 /// public List detail { get; set; } } public class ICSOApplyNegInfo { /// /// ID /// public string DetailID { get; set; } /// /// 行号 /// public string Sequence { get; set; } /// /// 料品编码 /// public string InvCode { get; set; } /// /// 数量 /// public decimal Quantity { get; set; } /// /// 辅计量数量 /// public decimal Amount { get; set; } /// /// 源头单据表体ID /// public string SourceDetailID { get; set; } /// /// 站点 /// public string WorkPoint { get; set; } /// /// 自由项ID /// public string ExtensionID { get; set; } } }