12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Model.AppModels.Result.ERP
- {
- public class OutBound
- {
- public string OutboundNo { get; set; }
- public DateTime OutboundDate { get; set; }
- public OutBoundType OutboundType { get; set; }
- public string WarehouseCode { get; set; }
- public string SourceNo { get; set; }
- public string SourceName { get; set; }
- public string Maker { get; set; }
- public List<OutBoundDetail> OutboundDtlLst { get; set; }
- // outbound_no
- //outbound_date
- //outbound_type
- //warehouse_code
- //source_no
- //source_name
- //maker
- }
- }
|