NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantDepartmentTre...

31 lines
920 B
C#
Raw Permalink 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>
/// KoubeiMerchantDepartmentTreeQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantDepartmentTreeQueryModel : AopObject
{
/// <summary>
/// isv回传的auth_code通过auth_code校验当前操作人与商户的关系
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 商户的部门id
/// </summary>
[XmlElement("dept_id")]
public string DeptId { get; set; }
/// <summary>
/// 部门类型5为非叶子节点部门即商户创建的部门6为叶子节点部门即门店门店在业务上被当成是类型为6的部门
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}