using Hotline.Share.Requests;
namespace Hotline.Share.Dtos.ProvinceStatistics
{
public record QueryProvinceSendBackDto : PagedRequest
{
///
/// 本地编号
///
public string? No { get; set; }
///
/// 标题
///
public string? Title { get; set; }
///
/// 省编号
///
public string? ProvinceNo { get; set; }
///
/// 申请人
///
public string ApplyUserName { get; set; }
///
/// 申请时间
///
public DateTime? ApplyStartTime { get; set; }
///
/// 申请时间
///
public DateTime? ApplyEndTime { get; set; }
///
/// 审核结果 0 待审核 1 审核通过 2 审核不通过
///
public int State { get; set; } = 0;
}
}