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.

31 lines
1.0 KiB

2 years ago
2 years ago
  1. using Shentun.Peis.PeisReports;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Shentun.Peis.CustomerReports
  6. {
  7. /// <summary>
  8. /// 精简版
  9. /// </summary>
  10. public class GetCustomerOrgFeeSettlementInGroupReportReduceRequestDto
  11. {
  12. /// <summary>
  13. /// 单位相关
  14. /// </summary>
  15. public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
  16. /// <summary>
  17. /// 登记人员类型 1 2 3
  18. /// 1、按分组包含预登记, 全部
  19. /// 2、按分组不包含预登记, 剔除预登记
  20. /// 3、按分组实检(只检1项也算全部已检)) 部分已检跟总检
  21. /// </summary>
  22. public char RegisterType { get; set; }
  23. /// <summary>
  24. ///Y N 是否包含个人支付与赠送项目(勾选了显示全部,不勾选只显示单位支付)
  25. /// </summary>
  26. public char IsPersonalPayment { get; set; }
  27. }
  28. }