using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class GroupChange { /// /// 醍摩豆学生名单加入的成员 /// public List tmdjoin { get; set; } = new List(); /// /// 醍摩豆学生名单离开的成员 /// public List tmdleave { get; set; } = new List(); /// /// 学校学生名单加入的成员 /// public List stujoin { get; set; } = new List(); /// /// 学校学生名单离开的成员 /// public List stuleave { get; set; } = new List(); /// /// 学校教师名单加入的成员 /// public List tchjoin { get; set; } = new List(); /// /// 学校教师名单离开的成员 /// public List tchleave { get; set; } = new List(); /// /// 名单id /// public string listid { get; set; } /// /// 分区 /// public string scope { get; set; } /// /// 名单 分区键的coude /// public string originCode { get; set; } public string school { get; set; } /// /// 名单创建者 /// public string creatorId { get; set; } /// /// 名单类型 /// public string type { get; set; } /// /// 名单的状态 upsert(创建或更新) delete(删除状态,用于移除课程名单id,活动名单id) ,默认upsert /// public string status { get; set; } = "upsert"; public string periodId { get; set; } /// /// web hiteach hita /// public string client { get; set; } public string name { get; set; } } }