namespace HL_FristAidPlatform_DTO
{
///
/// 来院方式
///
public class T_Base_HospitalModeDTO
{
///
/// ID
///
public int ID { get; set; }
///
/// GUID
///
public string GUID { get; set; }
///
/// 值
///
public string Value { get; set; }
///
/// 来院方式内容
///
public string Content { get; set; }
///
/// 拼音码
///
public string PymCode { get; set; }
///
/// 五笔码
///
public string WbmCode { get; set; }
///
/// 是否启用0是1否
///
public int IsEnable { get; set; }
///
/// 所属系统模块
///
public long SystemModuleID { get; set; }
///
/// 排序
///
public int OrderBy { get; set; }
}
}