| 123456789101112131415161718 |
- using Business.Model.SRM;
- using Business.MongoModel.SRM;
- 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>();
- }
- }
|