29 lines
830 B
C#
29 lines
830 B
C#
namespace CompetitionAPI.api.back
|
|
{
|
|
/// <summary>
|
|
/// json转excel接口请求实体
|
|
/// </summary>
|
|
public class JsonTurnExcelRequest
|
|
{
|
|
/// <summary>
|
|
/// 考试数据
|
|
/// </summary>
|
|
public Competition.Mysql.Other.exam_scene_line_platform_area Exam { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试工具数据
|
|
/// </summary>
|
|
public List<Competition.Mysql.Model.pow_exam_tool> ToolList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试故障数据
|
|
/// </summary>
|
|
public List<Competition.Mysql.Model.pow_exam_fault> FaultList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试操作票数据
|
|
/// </summary>
|
|
public List<Competition.Mysql.Model.pow_exam_operation_ticket> OperationTicketList { get; set; }
|
|
}
|
|
}
|