using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.DI { public class Constant { public static readonly List BlobPrefix = new List { "exam", "vote", "survey", "item", "paper", "syllabus", "records", "doc", "image", "res", "video", "audio", "other", "thum", "train", "temp", "jyzx" }; public static readonly List ContentPrefix = new List { "doc", "image", "res", "video", "audio", "other" }; public static readonly string TEAMModelOS = "TEAMModelOS"; public static readonly string ScopeTeacher = "teacher"; public static readonly string ScopeTmdUser = "tmduser"; public static readonly string ScopeStudent = "student"; public static readonly string ScopeBusiness = "business"; public static readonly string RowKey = "RowKey"; public static readonly string PartitionKey = "PartitionKey"; public static readonly string School = "School"; public static readonly string Normal = "Normal"; public static readonly string Common = "Common"; public static readonly string Teacher = "Teacher"; public static readonly string Student = "Student"; public static readonly int private_lesson_limit = 50; public static readonly int private_lesson_expire = 7; public static readonly int school_lesson_expire = 7; //目前IES的tag只有"IES",待動態更新架構完成後再還原為"IES_{類別}" //public static readonly string NotifyType_IES5_Management = "IES_Management"; //public static readonly string NotifyType_IES5_Course = "IES_Course"; //public static readonly string NotifyType_IES5_Task = "IES_Task"; //public static readonly string NotifyType_IES5_Contect = "IES_Contect"; public static readonly string NotifyType_IES5_Management = "IES"; public static readonly string NotifyType_IES5_Course = "IES"; public static readonly string NotifyType_IES5_Task = "IES"; public static readonly string NotifyType_IES5_Contect = "IES"; public static readonly Dictionary DefaultPeriod = new Dictionary { {"pre" ,"学前"}, {"primary","小学"}, {"junior","初中"}, {"senior","高中" }, {"secondary","中职(中专,技校,职高)" }, {"college","高职(专科)"}, {"university","大学本科"}, {"special","特殊教育"}, {"edu-bureau","教育局"}, {"elecedu-dept","电教部门"}, // {"master","硕士研究生学段"}, // {"doctor","博士研究生学段"}, // {"adult-secondary","成人中专"}, // {"adult-higher","成人高教"}, //{"other","其它"} }; public static readonly string html = @" 校本研修活动完成情况

校本研修活动完成情况

教师信息

教师姓名 机构 教研组
{c.cname} {c.sname} {c.gname}

活动明细

{c.details}
活动主题 活动类型 任务学时 完成学时 活动时间 活动内容 活动任务 状态
"; } }