using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// DepartmentLabel Data Structure. /// [Serializable] public class DepartmentLabel : AopObject { /// /// 部门标签码 /// [XmlElement("code")] public string Code { get; set; } /// /// 部门标签id /// [XmlElement("label_id")] public string LabelId { get; set; } /// /// 部门标签名称 /// [XmlElement("name")] public string Name { get; set; } } }