步步为盈
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.

142 lines
4.4 KiB

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class IsvSmsEffectVO:JdObject{
[JsonProperty("shop_id")]
public string
shopId
{ get; set; }
[JsonProperty("flag")]
public string
flag
{ get; set; }
[JsonProperty("op_time")]
public string
opTime
{ get; set; }
[JsonProperty("pv")]
public string
pv
{ get; set; }
[JsonProperty("uv")]
public string
uv
{ get; set; }
[JsonProperty("cart_num")]
public string
cartNum
{ get; set; }
[JsonProperty("sku_pv_num")]
public string
skuPvNum
{ get; set; }
[JsonProperty("sku_uv_num")]
public string
skuUvNum
{ get; set; }
[JsonProperty("shop_pv_num")]
public string
shopPvNum
{ get; set; }
[JsonProperty("shop_uv_num")]
public string
shopUvNum
{ get; set; }
[JsonProperty("follow_sku_num")]
public string
followSkuNum
{ get; set; }
[JsonProperty("follow_shop_num")]
public string
followShopNum
{ get; set; }
[JsonProperty("ord_pins")]
public string
ordPins
{ get; set; }
[JsonProperty("ord_amount")]
public string
ordAmount
{ get; set; }
[JsonProperty("ord_num")]
public string
ordNum
{ get; set; }
[JsonProperty("ord_qtty")]
public string
ordQtty
{ get; set; }
[JsonProperty("pay_pins")]
public string
payPins
{ get; set; }
[JsonProperty("pay_amount")]
public string
payAmount
{ get; set; }
[JsonProperty("pay_num")]
public string
payNum
{ get; set; }
[JsonProperty("pay_qtty")]
public string
payQtty
{ get; set; }
[JsonProperty("people_sent_num")]
public string
peopleSentNum
{ get; set; }
[JsonProperty("delivered_num")]
public string
deliveredNum
{ get; set; }
[JsonProperty("coupon_pins")]
public string
couponPins
{ get; set; }
[JsonProperty("coupon_use_pins")]
public string
couponUsePins
{ get; set; }
[JsonProperty("coupon_orders")]
public string
couponOrders
{ get; set; }
[JsonProperty("coupon_amount")]
public string
couponAmount
{ get; set; }
}
}