Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiCateringItemQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1.2 KiB
C#
Raw Permalink 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>
/// KoubeiCateringItemQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringItemQueryModel : AopObject
{
/// <summary>
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填对应为《koubei.member.data.oauth.query》中的auth_code默认有效期24小时isv自身角色操作的时候无需传该参数
/// </summary>
[JsonProperty("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 口碑体系内部商品的唯一标识
/// </summary>
[JsonProperty("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 操作人员身份类型。如果是isv代操作请传入ISV如果是商户操作请传入MERCHANT如果是商户员工则传入M_STAFF
/// </summary>
[JsonProperty("operator_type")]
public string OperatorType { get; set; }
/// <summary>
/// 请求id。支持英文字母和数字由开发者自行定义不允许重复。比如2016102903214476899999999
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}