12345678910111213141516171819202122232425262728293031 |
- 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; }
- //补充留级信息
- //0在校,1留级,2退学 3毕业
- public int status { get; set; } = 0;
- }
- }
|