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 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; public static readonly string html = @" 校本研修活动完成情况

校本研修活动完成情况

教师信息

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

活动明细

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