123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NX.ERP.BLL.Model
- {
- 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
- }
- }
|