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 OutboundDtlLst { get; set; } // outbound_no //outbound_date //outbound_type //warehouse_code //source_no //source_name //maker } }