接口文件

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,42 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ItemUnitInfo Data Structure.
/// </summary>
[Serializable]
public class ItemUnitInfo : AopObject
{
/// <summary>
/// 商品详情-商品套餐内容-菜品数量
/// </summary>
[JsonProperty("amount")]
public long Amount { get; set; }
/// <summary>
/// 商品详情-商品套餐内容-菜品价格。字符串,单位元,两位小数
/// </summary>
[JsonProperty("price")]
public string Price { get; set; }
/// <summary>
/// 商品详情-商品套餐内容-菜品规格
/// </summary>
[JsonProperty("spec")]
public string Spec { get; set; }
/// <summary>
/// 商品详情-商品套餐内容-菜品名称。不得超过15个中文字符
/// </summary>
[JsonProperty("title")]
public string Title { get; set; }
/// <summary>
/// 商品详情-商品套餐内容-菜品数量单位
/// </summary>
[JsonProperty("unit")]
public string Unit { get; set; }
}
}