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.
26 lines
594 B
26 lines
594 B
1 year ago
|
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>
|
||
|
public DateTime? StartTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 结束时间
|
||
|
/// </summary>
|
||
|
public DateTime? EndTime { get; set;; }
|
||
|
}
|
||
|
}
|