You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.7 KiB
69 lines
1.7 KiB
package Const
|
|
|
|
//默认的GUID号
|
|
const ZeroGuid = "00000000-0000-0000-0000-000000000000"
|
|
|
|
//数据库操作失败
|
|
const DataBaseActionError = "数据库操作失败,请检查原因!"
|
|
|
|
//磁盘文件操作失败
|
|
const IoActionError = "磁盘文件操作失败!"
|
|
|
|
//数据库操作成功
|
|
const SuccessDataBaseAction = "操作成功"
|
|
|
|
//超级管理员
|
|
const SuperManager = "A66C757C-F797-454D-99DE-2A3F5415BC22"
|
|
|
|
//省管理员
|
|
const ProvinceManager = "7A1A0620-0465-431B-A726-097D9C7F963B"
|
|
|
|
//市管理员
|
|
const CityManager = "5CC3293C-3AA5-45B7-B54B-CA8CC549FB81"
|
|
|
|
//校管理员
|
|
const SchoolManager = "73E897FC-C9D1-4E48-AE22-AC7586425C1D"
|
|
|
|
//县区管理员
|
|
const DistrictManager = "BF61C95F-3ADD-4F37-9FCD-97E69E1BF6E3"
|
|
|
|
//大学区管理员
|
|
const EduAreaManager = "50E4C39C-A224-11EA-A0EC-000C29C1A876"
|
|
|
|
//教育机构管理员
|
|
const EduOrgManager = "9CD6B804-0F89-4626-A812-29465CFC7410"
|
|
|
|
//登录号在Redis中缓存的最大数
|
|
const LoginIdIntMax = "LoginIdIntMax"
|
|
|
|
// 导入EXCEL中使用的特殊颜色描述
|
|
|
|
// 唯一标识在导入的EXCEL中重复(比如身份证号,机构编码)
|
|
const BlueStyle = "#4169E1"
|
|
|
|
// 唯一标识在导入的数据库中重复(比如身份证号,机构编码)
|
|
const YellowStyle = "#FFD700"
|
|
|
|
//必填写项目为空
|
|
const RedStyle = "#DC143C"
|
|
|
|
//正常的背景颜色
|
|
const WhiteStyle = "#FFFFFF"
|
|
|
|
//对应的四个单元格位置
|
|
const WhiteCell = "A200"
|
|
const RedCell = "B200"
|
|
const BlueCell = "C200"
|
|
const YellowCell = "D200"
|
|
|
|
//整数最大值
|
|
const Int32Max = 2147483647
|
|
|
|
//操作CODE
|
|
const ActionInsert = "INSERT"
|
|
const ActionUpdate = "UPDATE"
|
|
const ActionDelete = "DELETE"
|
|
|
|
const BlankArrayString = "[]"
|
|
const DataBaseBlankResult = "没有找到相应的记录"
|