using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class InpatientDepartmentDTO
{
///
///
///
public int ID { get; set; }
///
/// 部门名称
///
public string Name { get; set; }
///
/// 所属系统
///
public long SystemModuleID { get; set; }
///
/// 是否删除
///
public int DeleteFlag { get; set; }
///
/// 创建时间
///
public DateTime CreationDate { get; set; }
}
}