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 { [JsonProperty(PropertyName = "id")] public string Id { get; set; } public string Name { get; set; } public string HeadMaster { get; set; } public string Period { get; set; } public string Grade { get; set; } [PartitionKey] public string HiTeach { get; set; } public int StuNum { get; set; } public string ClassroomType { get; set; } } }