using Znyc.Recruitment.Admin.Commons.Dtos;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.Dtos
{
///
/// 充值列表搜索条件
///
public class SearchPaymentRecordModel : SearchInputDto
{
///
/// 开始时间
///
public string StartTime { get; set; }
///
/// 结束时间
///
public string EndTime { get; set; }
///
/// 充值金额
///
public int PaymentMoney { get; set; }
}
}