GradingExamRequest.cs 507 B

1234567891011121314151617181920212223
  1. using Exam.Infrastructure.Data.Interface;
  2. using Hotline.Share.Dtos.TrCallCenter;
  3. using System.ComponentModel;
  4. namespace Hotline.Share.Requests.Exam
  5. {
  6. public class GradingExamRequest:IQueryRequest
  7. {
  8. /// <summary>
  9. /// 考试Id
  10. /// </summary>
  11. [Description("考试Id")]
  12. public string ExamId { get; set; }
  13. /// <summary>
  14. /// 用户Id
  15. /// </summary>
  16. [Description("用户Id")]
  17. public string UserId { get; set; }
  18. }
  19. }