using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Models { public class Parent : CosmosEntity { // id = tmdid // code = "Base-Parent" //绑定信息的key(手机号,邮箱,醍摩豆id) public List bindKey { get; set; } = new List(); //姓名 姓名 public string name { get; set; } //监护人:父亲,母亲,或者其他监护人 public string identity { get; set; } /// /// 头像 /// public string picture { get; set; } } public class ParentChildren { /// ///类型 1 tmdid,2 student /// public int type { get; set; } public string id { get; set; } /// /// 头像 /// public string picture { get; set; } /// /// 名称 /// public string name { get; set; } /// /// 学生所在的学校 /// public string code { get; set; } } }