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.
|
|
|
namespace BBWY.Server.Model.Dto
|
|
|
|
{
|
|
|
|
public class JDMultiLevelGOIResponse
|
|
|
|
{
|
|
|
|
public JDMultiLevelGOIResponse()
|
|
|
|
{
|
|
|
|
_7GOI = new GOIResponse();
|
|
|
|
_30GOI = new GOIResponse();
|
|
|
|
CustomDaysGOI = new GOIResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
public long LevelId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 快车=2 京速推=134217728
|
|
|
|
/// </summary>
|
|
|
|
public int BusinessType { get; set; }
|
|
|
|
|
|
|
|
public GOIResponse _7GOI { get; set; }
|
|
|
|
|
|
|
|
public GOIResponse _30GOI { get; set; }
|
|
|
|
|
|
|
|
public GOIResponse CustomDaysGOI { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class JDSkuLevelGOIResponse : JDMultiLevelGOIResponse
|
|
|
|
{
|
|
|
|
|
|
|
|
public new string LevelId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|