using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels { public class StuInfo { [JsonProperty(PropertyName = "id")] public string Id { get; set; } public string StudentId { get; set; } public string PassWord { get; set; } = "123456"; public string Name { get; set; } public string SeatNo { get; set; } public string ClassroomCode { get; set; } public string GradeCode { get; set; } [PartitionKey] public string SchoolCode { get; set; } } }