MoAllocate.cs 709 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.Model.MOM
  6. {
  7. public class MoAllocate : BaseModel
  8. {
  9. private int id;
  10. private string invCode;
  11. private decimal qty;
  12. private int modid;
  13. public int ProductOrderDtlId { get; set; }
  14. public int AllocateId { get => id; set => id = value; }
  15. public string MaterialCode { get => invCode; set => invCode = value; }
  16. public decimal Qty { get => qty; set => qty = value; }
  17. public int ProductOrderId { get => modid; set => modid = value; }
  18. //public string UnitCode { get; set; }
  19. public double Issqty { get; set; }
  20. }
  21. }