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

namespace Shentun.PeisReport.Api.Dto.ReportBusiness
{
public class GetPeisReportByIdNoInputDto
{
/// <summary>
/// 身份证号码
/// </summary>
public string IdNo { get; set; }
/// <summary>
/// 查询报告的数量 默认2次
/// </summary>
public int ReportCount { get; set; } = 2;
}
}