TeacherImport.cs 899 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TEAMModelOS.SDK.Models
  7. {
  8. public class TeacherImport:CosmosEntity
  9. {
  10. //id 学校id ,
  11. //code TeacherImport,
  12. public List<ImportTeacher> teachers { get; set; }=new List<ImportTeacher>();
  13. }
  14. public class ImportTeacher {
  15. // 手机号或者醍摩豆id,可以为空,则没正式加入学校的教师
  16. public string id { get; set; }
  17. public string name { get; set; }
  18. public string iname { get; set; }
  19. public string picture { get; set; }
  20. public string status { get; set; }
  21. public long time { get; set; }
  22. public string tmdid { get; set; }
  23. public string phone { get; set; }
  24. public string email { get; set; }
  25. public string note { get; set; }
  26. }
  27. }