NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantDepartmentMod...

43 lines
1.2 KiB
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>
/// KoubeiMerchantDepartmentModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantDepartmentModifyModel : 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>
/// 商户创建的部门名称,可以修改
/// </summary>
[XmlElement("dept_name")]
public string DeptName { get; set; }
/// <summary>
/// 人员组织场景组织部门属性标签现在支持PROCESSING_ROOM, DELIVER_CENTRE, CENTRAL_KITCHEN三种
/// </summary>
[XmlElement("label_code")]
public string LabelCode { get; set; }
/// <summary>
/// 当前部门对应的上级部门id
/// </summary>
[XmlElement("parent_dept_id")]
public string ParentDeptId { get; set; }
}
}