DispatchListDetail.cs 743 B

12345678910111213141516171819202122232425262728
  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 DispatchListDetail : BaseModel
  8. {
  9. private int sales_order_dtl_id;
  10. private string invCode;
  11. private double quantity;
  12. private string invName;
  13. public int SalesOrderDtlId { get => sales_order_dtl_id; set => sales_order_dtl_id = value; }
  14. public string MaterialCode { get => invCode; set => invCode = value; }
  15. public double Qty { get => quantity; set => quantity = value; }
  16. public string InvName { get => invName; set => invName = value; }
  17. public string UnitCode { get; set; }
  18. public int SalesOrderId { get; set; }
  19. }
  20. }