OutBound.cs 726 B

123456789101112131415161718192021222324252627282930
  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 OutBound
  8. {
  9. public string OutboundNo { get; set; }
  10. public DateTime OutboundDate { get; set; }
  11. public OutBoundType OutboundType { get; set; }
  12. public string WarehouseCode { get; set; }
  13. public string SourceNo { get; set; }
  14. public string SourceName { get; set; }
  15. public string Maker { get; set; }
  16. public List<OutBoundDetail> OutboundDtlLst { get; set; }
  17. // outbound_no
  18. //outbound_date
  19. //outbound_type
  20. //warehouse_code
  21. //source_no
  22. //source_name
  23. //maker
  24. }
  25. }