using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSSoft.Entity { public class HoldMaterialModel { public string TransCode { set; get; } public string TransSequence { set; get; } public string UserCode { set; get; } public string UserName { set; get; } public string MTime { set; get; } public string WorkPoint { set; get; } public List detail { set; get; } } public class HoldMaterialDetail { public string LotNo { set; get; } public string InvCode { set; get; } public string WarehouseCode { set; get; } public string LocationCode { set; get; } public string Quantity { set; get; } } }