StudyRecord.cs 541 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Teacher
  5. {
  6. public class StudyRecord : CosmosEntity
  7. {
  8. public StudyRecord() {
  9. pk = "StudyRecord";
  10. }
  11. public string tId { get; set; }
  12. public string school { get; set; }
  13. public string sign { get; set; }
  14. public long signTime { get; set; }
  15. //0未审核 1 通过 2 未通过
  16. public int status { get; set; }
  17. public long aTime { get; set; }
  18. }
  19. }