Student.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. //绑定班级Id
  21. public string classId { get; set; }
  22. //分组信息
  23. public string groupId { get; set; }
  24. public string groupName { get; set; }
  25. public string periodId { get; set; }
  26. /// <summary>
  27. /// 性别 m( male,男) f (female 女) n(secret 保密)
  28. /// </summary>
  29. public string gender { get; set; }
  30. //补充留级信息
  31. //0在校,1留级,2退学 3毕业
  32. public int status { get; set; } = 0;
  33. }
  34. }