12345678910111213141516171819202122232425262728 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.BaseInfo.Models
- {
- public class Classroom
- {
- public Classroom() {
- point = new Point();
- }
- [JsonProperty(PropertyName = "id")]
- public string Id { get; set; }
- [PartitionKey]
- public string SchoolCode { get; set; }
- public string ClassroomCode { get; set; }
- public Point point { get; set; }
- public string Name { get; set; }
- public string HeadMaster { get; set; }
- public string Period { get; set; }
- public string Grade { get; set; }
- public string HiTeach { get; set; }
- public int StuNum { get; set; }
- public string ClassroomType { get; set; }
- }
- }
|