初始提交
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// MedicalHospitalDeptInfo Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class MedicalHospitalDeptInfo : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 科室唯一标识,编码开发者生成并保证唯一
|
||||
/// </summary>
|
||||
[JsonProperty("code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 科室位置
|
||||
/// </summary>
|
||||
[JsonProperty("location")]
|
||||
public string Location { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 科室名称
|
||||
/// </summary>
|
||||
[JsonProperty("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 父科室名称 如果是顶层科室可空 目的定位科室级联关系
|
||||
/// </summary>
|
||||
[JsonProperty("parent_name")]
|
||||
public string ParentName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 父科室唯一标识 如果是顶层科室可空 目的定位科室级联关系
|
||||
/// </summary>
|
||||
[JsonProperty("partner_code")]
|
||||
public string PartnerCode { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user