123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Model.AppModels.Result.ERP
- {
- public class Inbound
- {
- private IList<InboundDetail> _InboundDetail = 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 string Maker { get; set; }
- public IList<InboundDetail> InboundDetail { get => _InboundDetail; set => _InboundDetail = value; }
- }
- }
|