| 123456789101112131415161718192021 |
- using Business.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.ResourceExamineManagement.Dto
- {
- public class PoActionListDto
- {
- public List<srm_po_main> poMain { get; set; } = new List<srm_po_main>();
- public List<srm_po_list> polist { get; set; } = new List<srm_po_list>();
- public List<mo_srm_po_main> mopoMain { get; set; } = new List<mo_srm_po_main>();
- public List<mo_srm_po_list> mopolist { get; set; } = new List<mo_srm_po_list>();
- public List<mo_srm_po_occupy> mopoOccupiesList { get; set; } = new List<mo_srm_po_occupy>();
- public List<srm_po_occupy> poOccupiesList { get; set; } = new List<srm_po_occupy>();
- public List<PurOrdMaster> poMasterList { get; set; } = new List<PurOrdMaster>();
- public List<PurOrdDetail> poDetailList { get; set; } = new List<PurOrdDetail>();
- }
- }
|