StableVersion4.3/HL_FristAidPlatform_DTO/Base/T_Base_InpatientDepartmentD...

29 lines
595 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class T_Base_InpatientDepartmentDTO
{
public int ID { get; set; }
/// <summary>
/// 部门名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 所属系统
/// </summary>
public long SystemModuleID { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreatId { get; set; }
}
}