1234567891011121314151617181920212223242526272829303132333435 |
- 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; }
- //绑定班级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;
- }
- }
|