1234567891011121314151617181920212223242526272829 |
- 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<ImportTeacher> teachers { get; set; }=new List<ImportTeacher>();
- }
- 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; }
- }
- }
|