Student.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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 Student : CosmosEntity
  8. {
  9. public string mail { get; set; }
  10. public string mobile { get; set; }
  11. public string country { get; set; }
  12. public string name { get; set; }
  13. public string picture { get; set; }
  14. public string schoolId { get; set; }
  15. public string pw { get; set; }
  16. public string salt { get; set; }
  17. public int year { get; set; }
  18. //座位号
  19. public string no { get; set; } //座位号
  20. public string irs { get; set; }
  21. //绑定班级Id
  22. public string classId { get; set; }
  23. //分组信息
  24. public string groupId { get; set; }
  25. public string groupName { get; set; }
  26. public string periodId { get; set; }
  27. /// <summary>
  28. /// 性别 m( male,男) f (female 女) n(secret 保密)
  29. /// </summary>
  30. public string gender { get; set; }
  31. //补充留级信息
  32. //0在校,1留级,2退学 3毕业
  33. public int status { get; set; } = 0;
  34. }
  35. }