StableVersion4.3/HL_FristAidPlatform_DTO/Base/InpatientDepartmentDTO.cs

37 lines
772 B
C#

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