30 lines
808 B
C#
30 lines
808 B
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// SkuDescInfo Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class SkuDescInfo : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 城市行政代码,用于不同城市定价时使用,默认价格使用-1
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("city")]
|
|||
|
|
public string City { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 第三方商户定义的外部属性值Id,多个id用英文逗号分隔
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("out_pv_id")]
|
|||
|
|
public string OutPvId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 商户库存量单位id.由外部商户生成,保证同一个商品下的id是唯一,只支持数字、字母和下划线
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("out_sku_id")]
|
|||
|
|
public string OutSkuId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|