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

42 lines
1.3 KiB
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>
/// KoubeiItemBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiItemBatchqueryModel : AopObject
{
/// <summary>
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填对应为《koubei.member.data.oauth.query》中的auth_code默认有效期24小时
/// </summary>
[JsonProperty("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 商品Id,多个用,分割最多支持传5个,如果不传递则查询商户下所有商品但是不返回适用门店字段使用了该参数则无需填写page_no和page_size
/// </summary>
[JsonProperty("item_ids")]
public string ItemIds { get; set; }
/// <summary>
/// 操作上下文 isv角色操作时必填其他角色不需填写
/// </summary>
[JsonProperty("operation_context")]
public KoubeiOperationContext OperationContext { get; set; }
/// <summary>
/// 页码留空标示第一页默认10个结果为一页
/// </summary>
[JsonProperty("page_no")]
public string PageNo { get; set; }
/// <summary>
/// 每页记录数默认10最大20
/// </summary>
[JsonProperty("page_size")]
public long PageSize { get; set; }
}
}