MomDetail.cs 813 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace NX.ERP.Model.MOM
  7. {
  8. public class MomDetail: BaseModel
  9. {
  10. private int id;
  11. private double qty;
  12. private int modid;
  13. public ICollection<MoAllocate> ProductAllocateOrderLst { get; set; } = new List<MoAllocate>();
  14. public int ProductOrderDtlId { get => id; set => id = value; }
  15. public int ProductOrderId { get => modid; set => modid = value; }
  16. public string ProductOrderNo { get; set; }
  17. public DateTime ProductOrderDate { get; set; }
  18. public string ProductCode { get; set; }
  19. //public string BatchNo { get; set; }
  20. public double Qty { get => qty; set => qty = value; }
  21. }
  22. }