1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Newtonsoft.Json;
- namespace NX.ERP.Model.MOM
- {
- public class MomOrder: BaseModel
- {
- private int id;
- private string code;
- //public DateTime Date { get; set; }
- /// <summary>
- ///
- /// </summary>
- public ICollection<MomDetail> ProductDtlLst { get; set; } = new List<MomDetail>();
- public int ProductOrderId { get => id; set => id = value; }
- public string ProductOrderNo { get => code; set => code = value; }
- public DateTime ProductDate { get; set; }
- public string PreparedBy { get; set; }
- [Newtonsoft.Json.JsonIgnore]
- public ICollection<MoAllocate> Allocates { get; set; } = new List<MoAllocate>();
- }
- }
|