Constant.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. namespace HTEX.Complex
  2. {
  3. public class Constant
  4. {
  5. public static readonly List<string> BlobPrefix = new List<string> { "exam", "vote", "survey", "item", "paper", "syllabus", "records", "doc", "image", "res", "video", "audio", "other", "thum", "train", "temp", "jyzx" };
  6. public static readonly List<string> ContentPrefix = new List<string> { "doc", "image", "res", "video", "audio", "other" };
  7. public static readonly string TEAMModelOS = "TEAMModelOS";
  8. public static readonly string ScopeTeacher = "teacher";
  9. public static readonly string ScopeTmdUser = "tmduser";
  10. public static readonly string ScopeStudent = "student";
  11. public static readonly string ScopeBusiness = "business";
  12. public static readonly string RowKey = "RowKey";
  13. public static readonly string PartitionKey = "PartitionKey";
  14. public static readonly string School = "School";
  15. public static readonly string Normal = "Normal";
  16. public static readonly string Common = "Common";
  17. public static readonly string Teacher = "Teacher";
  18. public static readonly string Student = "Student";
  19. public const string Equal = "eq";
  20. public const string NotEqual = "ne";
  21. public const string GreaterThan = "gt";
  22. public const string GreaterThanOrEqual = "ge";
  23. public const string LessThan = "lt";
  24. public const string LessThanOrEqual = "le";
  25. }
  26. }