using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VRS.Util { public static class ConfigInfo { /// /// 图片类型 /// public static List list_pic_type = new List() { ".jpg", ".png", ".bmp", ".jpeg", ".gif", ".tiff", ".tif", ".svg", ".webp", ".heif", ".heic" }; /// /// 视频类型 /// public static List list_video_type = new List() { ".mp4", ".avi", ".dat", ".3gp", ".mov", ".rmvb", ".mkv", ".flv", ".wmv", ".webm", ".mpeg", ".mpg", ".ts", ".ogv" }; /// /// 实践模式 /// public static Dictionary DicSjms = new Dictionary() { /* 1.结构认知:不用选学生 2.现场教学:不用选学生 3.实操训练:不用选学生 4.实操考试:不用选学生 */ {"1","结构认知"} , {"2","现场教学"} , {"3","实操训练"} , {"4","实操考试"} }; /// /// 考试模式 /// public static List DicSjms_KS = new List() { /* 4.实操考试: */ "4" }; /// /// 实践模式 /// public static Dictionary DicRoomState = new Dictionary() { /* 0未启动,1进行中,2已结束 */ {"0","未启动"} , {"1","进行中"} , {"2","已结束"} }; /// /// 角色 /// public static Dictionary DicRole = new Dictionary() { {"0","超级管理员"} , {"1","老师"} , {"2","学生"} , {"3","学校管理员"} }; #region cos配置 public static readonly string cos_type = "upload"; public static readonly string cos_appid = "1300932214"; public static readonly string cos_region = "ap-nanjing"; //地域 public static readonly string cos_buket_name = "lzy";//lzy #endregion } }