CompetitionAPI_dotnet/CompetitionAPI/api/unity/GetExamListRequest.cs

31 lines
714 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace CompetitionAPI.api.unity
{
public class GetExamListRequest
{
/// <summary>
/// 页码
/// </summary>
public int PageIndex { get; set; }
/// <summary>
/// 每页数量
/// </summary>
public int PageSize { get; set; }
/// <summary>
/// 用户id
/// </summary>
public string UserId { get; set; }
/// <summary>
/// 考试名称
/// </summary>
public string ExamName { get; set; }
/// <summary>
/// 是否考试0未考试1已考试2已结束3未开始
/// </summary>
public string IsExam { get; set; }
}
}