123456789101112131415161718192021222324252627282930313233343536373839 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.Model.MOM
- {
- public class MomDetail: BaseModel
- {
- private int id;
- private double qty;
- private int modid;
- public ICollection<MoAllocate> ProductAllocateOrderLst { get; set; } = new List<MoAllocate>();
- public int ProductOrderDtlId { get => id; set => id = value; }
- public int ProductOrderId { get => modid; set => modid = value; }
- public string ProductOrderNo { get; set; }
- public DateTime ProductOrderDate { get; set; }
- public string ProductCode { get; set; }
-
- //public string BatchNo { get; set; }
-
- public double Qty { get => qty; set => qty = value; }
-
- }
- }
|