12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity
- {
- public class AllSecs
- {
- public OrderMst Mst { get; set; }
- public List<OrderDetail> Orders { get; set; } = new List<OrderDetail>();
- public List<OrderData> OrderDatas { get; set; } = new List<OrderData>();
- public List<OrderRelation> OrderRelations { get; set; } = new List<OrderRelation>();
- public List<OrderEvent> OrderEvents { get; set; } = new List<OrderEvent>();
- public List<ReportMst> ReportMsts { get; set; } = new List<ReportMst>();
- public List<ReportDetail> ReportDetails { get; set; } = new List<ReportDetail>();
- public List<EventReportDetail> EventReportDetails { get; set; } = new List<EventReportDetail>();
- }
- }
|