1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.BLL.Model
- {
- public class Inbound : ERP.Model.BaseModel
- {
- private IList<InboundDetail> _InboundDtlLst = new List<InboundDetail>();
- public string InboundNo { get; set; }
- //[Newtonsoft.Json.JsonConverter(typeof(NX.ERP.Model.TimestampConverter))]
- public DateTime InboundDate { get; set; }
- public InboundType InboundType { get; set; }
- public string WarehouseCode { get; set; }
- public string SourceNo { get; set; }
- public string SourceName { get; set; }
- //public IEnumerable<InboundDetail> InboundDtlLst { get; set; }
- public string Maker { get; set; }
- public IList<InboundDetail> InboundDtlLst { get => _InboundDtlLst; set => _InboundDtlLst = value; }
- //public IList<InboundDetail> InboundDetail { get => _InboundDetail; set => _InboundDetail = value; }
- }
- }
|