1234567891011121314151617181920212223 |
- 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; }
- [PartitionKey]
- public string Code { 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; }
- }
- }
|