138 lines
4.2 KiB
C#
138 lines
4.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace JDRebate.Entitys
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 通过查询商品id,返回的信息
|
|||
|
/// </summary>
|
|||
|
public class promotion_info
|
|||
|
{
|
|||
|
//message:接口返回结果描述,result:商品推广信息实体类,sucessed:接口是否调用成功(true:成功,false:失败),skuId:SKUID,goodsName:商品名称,unitPrice:商品单价即京东价,wlUnitPrice:商品无线京东价(单价为-1表示未查询到改商品单价)imgUrl:图片地址 commisionRatioPc:PC佣金比例,commisionRatioWl:无线佣金比例,shopId:店铺ID,materialUrl:商品落地页,startDate:推广开始日期,endDate:推广结束日期,imgUrl:图片地址,WlUnitPrice:商品无线京东价(单价为-1表示未查询到改商品单价),cid2:二级类目,cid3:三级类目,vid:商家id,isJdSale:是否自营(1:是,0:否),isFreeShipping:是否包邮(1:是,0:否,2:自营商品遵从主站包邮规则),isFreeFreightRisk:是否支持运费险(1:是,0:否),isSeckill:是否秒杀(1:是,0:否),cid:一级类目名称,cidName:一级级类目名称,inOrderCount:30天引单数量
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 接口返回结果描述
|
|||
|
/// </summary>
|
|||
|
public string message { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品推广信息实体类
|
|||
|
/// </summary>
|
|||
|
public string result { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 接口是否调用成功
|
|||
|
/// </summary>
|
|||
|
public bool sucessed { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 接口返回结果描述
|
|||
|
/// </summary>
|
|||
|
public long skuId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品名称
|
|||
|
/// </summary>
|
|||
|
public string goodsName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品单价即京东价
|
|||
|
/// </summary>
|
|||
|
public string unitPrice { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品无线京东价(单价为-1表示未查询到改商品单价)
|
|||
|
/// </summary>
|
|||
|
public string wlUnitPrice { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 图片地址
|
|||
|
/// </summary>
|
|||
|
public string imgUrl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// PC佣金比例
|
|||
|
/// </summary>
|
|||
|
public string commisionRatioPc { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 无线佣金比例
|
|||
|
/// </summary>
|
|||
|
public string commisionRatioWl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 店铺ID
|
|||
|
/// </summary>
|
|||
|
public string shopId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商品落地页
|
|||
|
/// </summary>
|
|||
|
public string materialUrl { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 推广开始日期
|
|||
|
/// </summary>
|
|||
|
public DateTime startDate { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 推广结束日期
|
|||
|
/// </summary>
|
|||
|
public DateTime endDate { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 二级类目
|
|||
|
/// </summary>
|
|||
|
public string cid2 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 三级类目
|
|||
|
/// </summary>
|
|||
|
public string cid3 { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 商家id
|
|||
|
/// </summary>
|
|||
|
public string vid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否自营(1:是,0:否)
|
|||
|
/// </summary>
|
|||
|
public string isJdSale { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否包邮(1:是,0:否,2:自营商品遵从主站包邮规则)
|
|||
|
/// </summary>
|
|||
|
public string isFreeShipping { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否支持运费险(1:是,0:否)
|
|||
|
/// </summary>
|
|||
|
public string isFreeFreightRisk { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否秒杀(1:是,0:否)
|
|||
|
/// </summary>
|
|||
|
public string isSeckill { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 一级类目名称
|
|||
|
/// </summary>
|
|||
|
public string cid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 一级级类目名称
|
|||
|
/// </summary>
|
|||
|
public string cidName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 30天引单数量
|
|||
|
/// </summary>
|
|||
|
public string inOrderCount { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|