namespace HTEX.Complex { 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 const string Equal = "eq"; public const string NotEqual = "ne"; public const string GreaterThan = "gt"; public const string GreaterThanOrEqual = "ge"; public const string LessThan = "lt"; public const string LessThanOrEqual = "le"; } }