123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using static TEAMModelOS.SDK.Models.Teacher;
- namespace TEAMModelOS.SDK.Models
- {
- public class Student : CosmosEntity
- {
- public string mail { get; set; }
- public string mobile { get; set; }
- public string country { get; set; }
- public string name { get; set; }
- public string picture { get; set; }
- public string schoolId { get; set; }
- public string pw { get; set; }
- public string salt { get; set; }
- public int year { get; set; }
- //座位号
- public string no { get; set; } //座位号
- public string irs { get; set; }
- //绑定班级Id
- public string classId { get; set; }
- //分组信息
- public string groupId { get; set; }
- public string groupName { get; set; }
- public string periodId { get; set; }
- /// <summary>
- /// 性别 m( male,男) f (female 女) n(secret 保密)
- /// </summary>
- public string gender { get; set; }
- //补充留级信息
- //0在校,1留级,2退学 3毕业
- public int status { get; set; } = 0;
- /// <summary>
- /// 保留当天的登录信息
- /// </summary>
- public List<LoginInfo> loginInfos { get; set; } = new List<LoginInfo>();
- /// <summary>
- /// 创建时间 十位 时间戳
- /// </summary>
- public long createTime { get; set; }
- //public List<StudentParent> parents { get; set; }= new List<StudentParent>();
- }
- public class Guardian
- {
- //绑定信息的key(手机号,邮箱,醍摩豆id)
- // public List<BindKey> bindKey { get; set; } = new List<BindKey>();
- //姓名 姓名
- public string name { get; set; }
- //监护人:父亲,母亲,或者其他监护人
- public string identity { get; set; }
- /// <summary>
- /// 头像
- /// </summary>
- public string picture { get; set; }
- public string tmdid { get; set; }
- public string mobile { get; set; }
- public string mail { get; set; }
- }
- public class BindKey
- {
- // key(手机号,邮箱,醍摩豆id,Line,Google等信息)
- public string key { get; set; }
- public string type { get; set; }
- }
- }
|