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.
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace BBWY.Server.Model.Dto
|
|
|
|
{
|
|
|
|
public class GOIRequest
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 维度Id数组
|
|
|
|
/// </summary>
|
|
|
|
public IList<long> LevelIdList { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 业务线 快车=2,京速推=134217728
|
|
|
|
/// <para>计划维度支持快车,京速推</para>
|
|
|
|
/// <para>单元维度仅支持快车</para>
|
|
|
|
/// <para>创意维度仅支持快车</para>
|
|
|
|
/// <para>SKU维度仅支持京速推</para>
|
|
|
|
/// </summary>
|
|
|
|
public int BusinessType { get; set; }
|
|
|
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
|
|
|
public bool OnlyCustomDate { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class SkuGOIRequest: GOIRequest
|
|
|
|
{
|
|
|
|
public new IList<string> LevelIdList { get; set; }
|
|
|
|
}
|
|
|
|
}
|