DispatchList.cs 531 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.Sale
  6. {
  7. public class DispatchList:BaseModel
  8. {
  9. public int SalesOrderId { get; set; }
  10. public string SalesOrderNo { get; set; }
  11. public string CustomerCode { get; set; }
  12. public string CoCode { get; set; }
  13. public DateTime SalesOrderDate { get; set; }
  14. public ICollection<DispatchListDetail> SalesOrderDtlLst { get; set; } = new List<DispatchListDetail>();
  15. }
  16. }