using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { public class ICSAssemVouch { /// /// 部门 /// public string DepCode { get; set; } /// /// 用户编号 /// public string User { get; set; } public bool UpdateStock { get; set; } public DateTime MTime { get; set; } /// /// 入库 /// public string InWhCode { get; set; } public string WorkPoint { get; set; } /// /// 出库 /// public string OutWhCode { get; set; } public List details { get; set; } } public class ICSAssemVouchs { public string Sequence { get; set; } public string GroupNO { get; set; } public string Type { get; set; } public string InvCode { get; set; } public string WHCode { get; set; } public string BatchCode { get; set; } public string ProjectCode { get; set; } public decimal Quantity { get; set; } public decimal Amount { get; set; } } }