PoActionListDto.cs 953 B

123456789101112131415161718192021
  1. using Business.Domain;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Business.ResourceExamineManagement.Dto
  8. {
  9. public class PoActionListDto
  10. {
  11. public List<srm_po_main> poMain { get; set; } = new List<srm_po_main>();
  12. public List<srm_po_list> polist { get; set; } = new List<srm_po_list>();
  13. public List<mo_srm_po_main> mopoMain { get; set; } = new List<mo_srm_po_main>();
  14. public List<mo_srm_po_list> mopolist { get; set; } = new List<mo_srm_po_list>();
  15. public List<mo_srm_po_occupy> mopoOccupiesList { get; set; } = new List<mo_srm_po_occupy>();
  16. public List<srm_po_occupy> poOccupiesList { get; set; } = new List<srm_po_occupy>();
  17. public List<PurOrdMaster> poMasterList { get; set; } = new List<PurOrdMaster>();
  18. public List<PurOrdDetail> poDetailList { get; set; } = new List<PurOrdDetail>();
  19. }
  20. }