Inbound.cs 790 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Model.AppModels.Result.ERP
  6. {
  7. public class Inbound
  8. {
  9. private IList<InboundDetail> _InboundDetail = 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 string Maker { get; set; }
  18. public IList<InboundDetail> InboundDetail { get => _InboundDetail; set => _InboundDetail = value; }
  19. }
  20. }