初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiItemExtitemCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiItemExtitemCreateModel : AopObject
{
/// <summary>
/// 品牌编码
/// </summary>
[JsonProperty("brand_code")]
public string BrandCode { get; set; }
/// <summary>
/// 品类编码
/// </summary>
[JsonProperty("category_code")]
public string CategoryCode { get; set; }
/// <summary>
/// 入数,必须为整数
/// </summary>
[JsonProperty("count")]
public long Count { get; set; }
/// <summary>
/// 产地
/// </summary>
[JsonProperty("country")]
public string Country { get; set; }
/// <summary>
/// 商品描述
/// </summary>
[JsonProperty("description")]
public string Description { get; set; }
/// <summary>
/// 商品条码
/// </summary>
[JsonProperty("item_code")]
public string ItemCode { get; set; }
/// <summary>
/// 商品图片file id
/// </summary>
[JsonProperty("picture")]
public string Picture { get; set; }
/// <summary>
/// 参考价格,单位(分),必须为整数
/// </summary>
[JsonProperty("price")]
public long Price { get; set; }
/// <summary>
/// 商品规格
/// </summary>
[JsonProperty("specification")]
public string Specification { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
}
}