39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiMerchantDepartmentBatchBindModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiMerchantDepartmentBatchBindModel : 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("dept_type")]
|
||
public string DeptType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 操作员基本信息列表
|
||
/// </summary>
|
||
[XmlArray("operator_list")]
|
||
[XmlArrayItem("simple_operator_model")]
|
||
public List<SimpleOperatorModel> OperatorList { get; set; }
|
||
}
|
||
}
|