123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class ExamScores
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; set; } = DateTime.MinValue;
- public DateTime UpdateTime { get; set; } = DateTime.MinValue;
- public bool IsDeleted { get; set; }
-
-
-
- public string UserId { get; set; }
-
-
-
- public string ExamId { get; set; }
-
-
-
- public double TotalScore { get; set; }
-
-
-
- public int CorrectCount { get; set; }
-
-
-
- public int SubmitCount { get; set; }
-
-
-
- public int MaxScore { get; set; }
-
-
-
- public IList<MyExamAnswer> MyExamAnswers { get; set; } = new List<MyExamAnswer>();
- }
-
-
-
- internal class MyExamAnswer
- {
-
-
-
- public string SubjectId { get; set; }
-
-
-
- public IList<string> Answers { get; set; } = new List<string>();
- }
- }
|