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