StableVersion4.3/HL_FristAidPlatform_DTO/EcgInterface/OrganizeView.cs

16 lines
312 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
namespace HL_FristAidPlatform_DTO
{
public class OrganizeView
{
/// <summary>
/// 机构代码
/// </summary>
public string orgCode { get; set; }
/// <summary>
/// 机构名称
/// </summary>
public string orgName { get; set; }
}
}