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; } /// /// 部门名称 /// public string Name { get; set; } /// /// 所属系统 /// public long SystemModuleID { get; set; } /// /// 创建人 /// public long CreatId { get; set; } } }