using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NX.ERP.BLL.Model { public class Inbound : ERP.Model.BaseModel { private IList _InboundDtlLst = new List(); public string InboundNo { get; set; } //[Newtonsoft.Json.JsonConverter(typeof(NX.ERP.Model.TimestampConverter))] public DateTime InboundDate { get; set; } public InboundType InboundType { get; set; } public string WarehouseCode { get; set; } public string SourceNo { get; set; } public string SourceName { get; set; } //public IEnumerable InboundDtlLst { get; set; } public string Maker { get; set; } public IList InboundDtlLst { get => _InboundDtlLst; set => _InboundDtlLst = value; } //public IList InboundDetail { get => _InboundDetail; set => _InboundDetail = value; } } }