StuInfo.cs 680 B

123456789101112131415161718192021222324
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
  7. {
  8. public class StuInfo
  9. {
  10. [JsonProperty(PropertyName = "id")]
  11. public string Id { get; set; }
  12. public string StudentId { get; set; }
  13. public string PassWord { get; set; } = "123456";
  14. public string Name { get; set; }
  15. public string SeatNo { get; set; }
  16. public string ClassroomCode { get; set; }
  17. public string GradeCode { get; set; }
  18. [PartitionKey]
  19. public string SchoolCode { get; set; }
  20. }
  21. }