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.
19 lines
487 B
19 lines
487 B
namespace SiNan.Model.Dto
|
|
{
|
|
public class PopularizeCostCurveStatisticsBySpuRequest
|
|
{
|
|
public long ShopId { get; set; }
|
|
|
|
public string Spu { get; set; }
|
|
|
|
/// <summary>
|
|
/// 曲线图起点时间,为空默认最近30天
|
|
/// </summary>
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 曲线图结束时间,为空默认昨天
|
|
/// </summary>
|
|
public DateTime? EndDate { get; set; }
|
|
}
|
|
}
|
|
|