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.

15 lines
372 B

5 months ago
  1. namespace Shentun.PeisReport.Api.Dto.ReportBusiness
  2. {
  3. public class GetPeisReportByIdNoInputDto
  4. {
  5. /// <summary>
  6. /// 身份证号码
  7. /// </summary>
  8. public string IdNo { get; set; }
  9. /// <summary>
  10. /// 查询报告的数量 默认2次
  11. /// </summary>
  12. public int ReportCount { get; set; } = 2;
  13. }
  14. }