Constant.cs 1.3 KB

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.DI
  5. {
  6. public class Constant
  7. {
  8. 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" };
  9. public static readonly List<string> ContentPrefix = new List<string> { "doc", "image", "res", "video", "audio", "other"};
  10. public static readonly string TEAMModelOS = "TEAMModelOS";
  11. public static readonly string ScopeTeacher = "teacher";
  12. public static readonly string ScopeTmdUser = "tmduser";
  13. public static readonly string ScopeStudent = "student";
  14. public static readonly string RowKey = "RowKey";
  15. public static readonly string PartitionKey = "PartitionKey";
  16. public static readonly string School = "School";
  17. public static readonly string Normal = "Normal";
  18. public static readonly string Common = "Common";
  19. public static readonly string Teacher = "Teacher";
  20. public static readonly string Student = "Student";
  21. public static readonly int private_lesson_limit =30;
  22. public static readonly int private_lesson_expire = 7;
  23. }
  24. }