using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiMerchantDepartmentTreeQueryModel Data Structure. /// [Serializable] public class KoubeiMerchantDepartmentTreeQueryModel : AopObject { /// /// isv回传的auth_code,通过auth_code校验当前操作人与商户的关系 /// [XmlElement("auth_code")] public string AuthCode { get; set; } /// /// 商户的部门id /// [XmlElement("dept_id")] public string DeptId { get; set; } /// /// 部门类型,5为非叶子节点部门即商户创建的部门;6为叶子节点部门即门店,门店在业务上被当成是类型为6的部门 /// [XmlElement("type")] public string Type { get; set; } } }