12345678910111213141516171819202122232425262728 |
- 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; }
- }
- }
|