43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MedicalHospitalDeptInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MedicalHospitalDeptInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 科室唯一标识,编码开发者生成并保证唯一
|
|
/// </summary>
|
|
[XmlElement("code")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 科室位置
|
|
/// </summary>
|
|
[XmlElement("location")]
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// 科室名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父科室名称 如果是顶层科室可空 目的定位科室级联关系
|
|
/// </summary>
|
|
[XmlElement("parent_name")]
|
|
public string ParentName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父科室唯一标识 如果是顶层科室可空 目的定位科室级联关系
|
|
/// </summary>
|
|
[XmlElement("partner_code")]
|
|
public string PartnerCode { get; set; }
|
|
}
|
|
}
|