using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NXWMS.Model.AppModels.Result.ERP { public class Inbound { private IList _InboundDetail = 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 string Maker { get; set; } public IList InboundDetail { get => _InboundDetail; set => _InboundDetail = value; } } }