using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
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; }
///
/// 性别 m( male,男) f (female 女) n(secret 保密)
///
public string gender { get; set; }
//补充留级信息
//0在校,1留级,2退学 3毕业
public int status { get; set; } = 0;
//public List parents { get; set; }= new List();
}
public class StudentParent {
//绑定信息的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 BindKey {
// key(手机号,邮箱,醍摩豆id,Line,Google等信息)
public string key { get; set; }
public string type { get; set; }
}
}