MomOrder.cs 810 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Newtonsoft.Json;
  6. namespace NX.ERP.Model.MOM
  7. {
  8. public class MomOrder: BaseModel
  9. {
  10. private int id;
  11. private string code;
  12. //public DateTime Date { get; set; }
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public ICollection<MomDetail> ProductDtlLst { get; set; } = new List<MomDetail>();
  17. public int ProductOrderId { get => id; set => id = value; }
  18. public string ProductOrderNo { get => code; set => code = value; }
  19. public DateTime ProductDate { get; set; }
  20. public string PreparedBy { get; set; }
  21. [Newtonsoft.Json.JsonIgnore]
  22. public ICollection<MoAllocate> Allocates { get; set; } = new List<MoAllocate>();
  23. }
  24. }