using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Models { public class TeacherImport:CosmosEntity { //id 学校id , //code TeacherImport, public List teachers { get; set; }=new List(); } public class ImportTeacher { // 手机号或者醍摩豆id,可以为空,则没正式加入学校的教师 public string id { get; set; } public string name { get; set; } public string iname { get; set; } public string picture { get; set; } public string status { get; set; } public long time { get; set; } public string tmdid { get; set; } public string phone { get; set; } public string email { get; set; } public string note { get; set; } } }