Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiItemExtitemExistedQueryModel.cs

20 lines
463 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiItemExtitemExistedQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiItemExtitemExistedQueryModel : AopObject
{
/// <summary>
/// 商品编码列表, 商品编码数量不超过100条。
/// </summary>
[JsonProperty("code_list")]
public List<string> CodeList { get; set; }
}
}