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.

22 lines
671 B

  1. using Shentun.Peis.PeisReports;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.CustomerReports
  7. {
  8. public class GetAsbitemSpecificResultReportRequestDto
  9. {
  10. /// <summary>
  11. /// 单位相关
  12. /// </summary>
  13. public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
  14. /// <summary>
  15. /// 组合项目ID 集合 必填
  16. /// </summary>
  17. [Required(ErrorMessage ="组合项目不能为空")]
  18. public List<Guid> AsbitemId { get; set; }
  19. }
  20. }