16 lines
312 B
C#
16 lines
312 B
C#
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class OrganizeView
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 机构代码
|
|||
|
/// </summary>
|
|||
|
public string orgCode { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 机构名称
|
|||
|
/// </summary>
|
|||
|
public string orgName { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|