43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
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; }
|
||
}
|
||
}
|