You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
559 B

  1. using Shentun.Peis.PeisReports;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Shentun.Peis.CustomerReports
  6. {
  7. public class GetItemSpecificResultReportRequestDto
  8. {
  9. /// <summary>
  10. /// 单位相关
  11. /// </summary>
  12. public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
  13. /// <summary>
  14. /// 项目ID
  15. /// </summary>
  16. public List<Guid> ItemIds { get; set; } = new List<Guid>();
  17. }
  18. }