Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SkuDescInfo.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
808 B
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 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; }
}
}