接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
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; }
}
}