NewGaoKaoApi/PaymentSDK/AliPay/Domain/DepartmentDTO.cs

67 lines
1.7 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>
/// DepartmentDTO Data Structure.
/// </summary>
[Serializable]
public class DepartmentDTO : AopObject
{
/// <summary>
/// 业务类型KOUBEI_OPERATOR
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 部门组织id
/// </summary>
[XmlElement("dept_id")]
public string DeptId { get; set; }
/// <summary>
/// 组织树部门名称
/// </summary>
[XmlElement("dept_name")]
public string DeptName { get; set; }
/// <summary>
/// 组织部门树
/// </summary>
[XmlElement("dept_path")]
public string DeptPath { get; set; }
/// <summary>
/// 人员组织场景的部门标签码
/// </summary>
[XmlElement("label_code")]
public string LabelCode { get; set; }
/// <summary>
/// 人员组织场景的部门标签名称
/// </summary>
[XmlElement("label_name")]
public string LabelName { get; set; }
/// <summary>
/// 上级组织部门id
/// </summary>
[XmlElement("parent_dept_id")]
public string ParentDeptId { get; set; }
/// <summary>
/// 门店id只有叶子节点部门才有shop_id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 组织部门类型(5为非叶子部门6为叶子部门)
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}