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.

30 lines
675 B

using System.ComponentModel.DataAnnotations;
namespace BBWYB.Server.Model.Dto
{
public class QueryNoCompletionOptimizationTaskRequest : PageRequest
{
/// <summary>
/// 京东SKU
/// </summary>
public string JDSku { get; set; }
/// <summary>
/// 需求方店铺
/// </summary>
public long? BelongShopId { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[Required]
public DateTime StartTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[Required]
public DateTime EndTime { get; set; }
}
}