Inbound.cs 967 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.BLL.Model
  6. {
  7. public class Inbound : ERP.Model.BaseModel
  8. {
  9. private IList<InboundDetail> _InboundDtlLst = new List<InboundDetail>();
  10. public string InboundNo { get; set; }
  11. //[Newtonsoft.Json.JsonConverter(typeof(NX.ERP.Model.TimestampConverter))]
  12. public DateTime InboundDate { get; set; }
  13. public InboundType InboundType { get; set; }
  14. public string WarehouseCode { get; set; }
  15. public string SourceNo { get; set; }
  16. public string SourceName { get; set; }
  17. //public IEnumerable<InboundDetail> InboundDtlLst { get; set; }
  18. public string Maker { get; set; }
  19. public IList<InboundDetail> InboundDtlLst { get => _InboundDtlLst; set => _InboundDtlLst = value; }
  20. //public IList<InboundDetail> InboundDetail { get => _InboundDetail; set => _InboundDetail = value; }
  21. }
  22. }