using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DepartmentDTO Data Structure.
///
[Serializable]
public class DepartmentDTO : AopObject
{
///
/// 业务类型KOUBEI_OPERATOR
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 部门组织id
///
[XmlElement("dept_id")]
public string DeptId { get; set; }
///
/// 组织树部门名称
///
[XmlElement("dept_name")]
public string DeptName { get; set; }
///
/// 组织部门树
///
[XmlElement("dept_path")]
public string DeptPath { get; set; }
///
/// 人员组织场景的部门标签码
///
[XmlElement("label_code")]
public string LabelCode { get; set; }
///
/// 人员组织场景的部门标签名称
///
[XmlElement("label_name")]
public string LabelName { get; set; }
///
/// 上级组织部门id
///
[XmlElement("parent_dept_id")]
public string ParentDeptId { get; set; }
///
/// 门店id,只有叶子节点部门才有shop_id
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
///
/// 组织部门类型(5为非叶子部门,6为叶子部门)
///
[XmlElement("type")]
public string Type { get; set; }
}
}