StudentInfo.cs 742 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.API.Models.Core
  7. {
  8. public class StudentInfo
  9. {
  10. [JsonProperty(PropertyName = "id")]
  11. public string id { get; set; }
  12. public string studentId { get; set; }
  13. // public string Password { get; set; }
  14. public string password { get; set; }
  15. public string name { get; set; }
  16. public int seatNo { get; set; }
  17. public string classroomCode { get; set; }
  18. public string gradeCode { get; set; }
  19. public string periodCode { get; set; }
  20. [PartitionKey]
  21. public string schoolCode { get; set; }
  22. }
  23. }