SchoolTeacher.cs 829 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace TEAMModelOS.SDK.Models
  6. {
  7. public class SchoolTeacher : CosmosEntity
  8. {
  9. public string name { get; set; }
  10. public string picture { get; set; }
  11. public int size { get; set; }
  12. public string job { get; set; }
  13. public List<string> roles { get; set; } = new List<string>();
  14. public List<string> permissions { get; set; } = new List<string>();
  15. public string status { get; set; }
  16. public long createTime { get; set; }
  17. /// <summary>
  18. /// ½ÌʦµÄ¿ÆÄ¿Êý×é
  19. /// </summary>
  20. public List<string> subjectIds { get; set; }=new List<string>();
  21. //public string groupId { get; set; }
  22. //public string groupName { get; set; }
  23. }
  24. }