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
386 B

6 months ago
  1. namespace Shentun.PeisReport.Api.Dto.ReportBusiness
  2. {
  3. public class GetLisReportByIdNoInputDto
  4. {
  5. /// <summary>
  6. /// 身份证号码
  7. /// </summary>
  8. public string IdNo { get; set; }
  9. /// <summary>
  10. /// 查询报告的时间 单位为天 默认30天
  11. /// </summary>
  12. public int ReportDay { get; set; } = 30;
  13. }
  14. }