NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantShopQueryMode...

25 lines
878 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMerchantShopQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantShopQueryModel : AopObject
{
/// <summary>
/// 用户从口碑商家中心页面跳转到ISV页面时url中带有的authCode值,用来ISV获取用户身份。
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 商户的部门id如果有值返回当前商户下的所有未分配过部门的门店加上当前部门id及其下分支部门的门店一起返回。如果为空则仅返回当前商户下的所有未分配过部门的门店。
/// </summary>
[XmlElement("dept_id")]
public string DeptId { get; set; }
}
}