using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
///
/// 公共信息
///
public static class Information
{
///
/// 用户类
///
public static class User
{
///
/// ID
///
public static long ID = 0;
///
/// 登录名
///
public static string LoginName = string.Empty;
///
/// 真实姓名
///
public static string FullName = string.Empty;
///
/// 工号
///
public static string WorkNumber = string.Empty;
///
/// 用户呢称
///
public static string Nickname = string.Empty;
///
/// 性别
///
public static string GenderName = string.Empty;
///
/// 所属部门
///
public static string DepartmentsName = string.Empty;
///
/// 职位
///
public static string PositionName = string.Empty;
///
/// 个人说明
///
public static string Signature = string.Empty;
///
/// 头像
///
public static byte[] Portrait = null;
///
/// 令牌
///
public static string Token = string.Empty;
///
/// 操作权限
///
public static string RoleOperating = string.Empty;
///
/// 所属医院
///
public static string HospitalGUID = string.Empty;
}
///
/// 医院类
///
public static class Hospital
{
///
/// 医院编号
///
public static int ID;
///
/// 医院GUID 外键通用
///
public static string GUID;
///
/// 上级医院编号 采用GUID避免后期多区域医院数据转移时ID冲突
///
public static string ParentGUID { get; set; }
///
/// 名称
///
public static string Name = string.Empty;
///
/// 简称
///
public static string ShortName = string.Empty;
///
/// 英文名
///
public static string EnglishName = string.Empty;
///
/// Logo地址
///
public static string LogoUrl = string.Empty;
///
/// Logo图片数据 string接收
///
public static string LogoImageData { get; set; }
///
/// 背景图片地址
///
public static string BgImageUrl = string.Empty;
///
/// 背景图片数据 string接收
///
public static string BgImageData { get; set; }
///
/// 心电接口机构代码
///
public static string Ecg_OrgCode { get; set; }
///
/// 心电接口请求路径
///
public static string Ecg_URL { get; set; }
///
/// 心电接口当前医院所开启的M4个数
///
public static int Ecg_RecordNumPer { get; set; }
///
/// 心电接口请求头AuthorKey
///
public static string Ecg_AuthorKey { get; set; }
///
/// 心电接口请求头AppId
///
public static string Ecg_AppId { get; set; }
///
/// 心电接口请求头Token
///
public static string Ecg_Token { get; set; }
///
/// 心电接口请求头Summary值对应的秘钥
///
public static string Ecg_Summary { get; set; }
///
/// 胸痛认证版本
///
public static string CP_CertificationVersion { get; set; }
///
/// 胸痛认证状态 1:认证中 2:认证通过 3:复审中 4:复审通过
///
public static string CP_CertificationStatus { get; set; }
///
/// 胸痛基层版首选再灌注策略(单选) 1:溶栓 2:转运PPCI 3:本院PPCI
///
public static string CP_First_Reperfusion { get; set; }
///
/// 胸痛基层版次选再灌注策略(多选|分割)1:溶栓 2:转运PPCI 3:本院PPCI
///
public static string CP_Second_Reperfusion { get; set; }
///
/// 卒中认证版本
///
public static string AP_CertificationVersion { get; set; }
///
/// 卒中认证状态 1:认证中 2:认证通过
///
public static string AP_CertificationStatus { get; set; }
///
/// 院区属性标记 1:主院区 2:分院 3:网络医院 4:胸痛救治单元 99:其他
///
public static string AttributeTag { get; set; }
}
///
/// 当前医院下辖的所有分院、网络医院、救治单元等院区的编号集合
///
public static List ListHospitalGuid = new List();
///
/// 系统类
///
public static class SystemInfo
{
///
/// 系统名称
///
public static string SystemName = string.Empty;
///
/// 软件说明
///
public static string SystemSummary = string.Empty;
///
/// 系统版本
///
public static string SystemEdition = string.Empty;
///
/// 公司名称
///
public static string CompanyName = string.Empty;
///
/// 公司网址
///
public static string CompanyWebsite = string.Empty;
///
/// 客服电话
///
public static string ServiceTelephone = string.Empty;
///
/// 客服邮箱
///
public static string ServiceEmail = string.Empty;
///
/// 标语
///
public static string Slogan = string.Empty;
///
/// 版权所有
///
public static string Copyright = string.Empty;
///
/// 版权说明
///
public static string CopyrightDescription = string.Empty;
}
///
/// 模块类
///
public static class SystemModuleInfo
{
///
/// 模块编号
///
public static long ID = 0;
///
/// 模块名称
///
public static string ModuleName = string.Empty;
///
/// 简称
///
public static string ShortName = string.Empty;
}
}
}