AllSecs.cs 793 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity
  5. {
  6. public class AllSecs
  7. {
  8. public OrderMst Mst { get; set; }
  9. public List<OrderDetail> Orders { get; set; } = new List<OrderDetail>();
  10. public List<OrderData> OrderDatas { get; set; } = new List<OrderData>();
  11. public List<OrderRelation> OrderRelations { get; set; } = new List<OrderRelation>();
  12. public List<OrderEvent> OrderEvents { get; set; } = new List<OrderEvent>();
  13. public List<ReportMst> ReportMsts { get; set; } = new List<ReportMst>();
  14. public List<ReportDetail> ReportDetails { get; set; } = new List<ReportDetail>();
  15. public List<EventReportDetail> EventReportDetails { get; set; } = new List<EventReportDetail>();
  16. }
  17. }