12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.MOM
- {
- public class MoAllocate : BaseModel
- {
- private int id;
- private string invCode;
- private decimal qty;
- private int modid;
- public int ProductOrderDtlId { get; set; }
- public int AllocateId { get => id; set => id = value; }
- public string MaterialCode { get => invCode; set => invCode = value; }
- public decimal Qty { get => qty; set => qty = value; }
- public int ProductOrderId { get => modid; set => modid = value; }
- //public string UnitCode { get; set; }
- public double Issqty { get; set; }
- }
- }
|