old_flsystem/应用/JDRebate/Entitys/promotion_info.cs

138 lines
4.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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:失败skuIdSKUIDgoodsName商品名称unitPrice商品单价即京东价,wlUnitPrice商品无线京东价单价为-1表示未查询到改商品单价imgUrl:图片地址 commisionRatioPcPC佣金比例commisionRatioWl无线佣金比例shopId店铺IDmaterialUrl商品落地页startDate推广开始日期endDate推广结束日期imgUrl图片地址WlUnitPrice商品无线京东价单价为-1表示未查询到改商品单价cid2:二级类目cid3:三级类目vid:商家idisJdSale:是否自营(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; }
}
}