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.

32 lines
730 B

namespace BBWYB.Server.Model.Dto
{
public class QueryTimeLimitTaskRequest
{
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public Enums.TimeLimitTaskType? TimeLimitTaskType { get; set; }
/// <summary>
/// 是否完成
/// </summary>
public bool IsCompleted { get; set; }
/// <summary>
/// 店铺Id (可空)
/// </summary>
public long? ShopId { get; set; }
/// <summary>
/// 页码,1开始
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// 每页记录数
/// </summary>
public int PageSize { get; set; }
}
}