namespace CompetitionAPI.api.back
{
///
/// json转excel接口请求实体
///
public class JsonTurnExcelRequest
{
///
/// 考试数据
///
public Competition.Mysql.Other.exam_scene_line_platform_area Exam { get; set; }
///
/// 考试工具数据
///
public List ToolList { get; set; }
///
/// 考试故障数据
///
public List FaultList { get; set; }
///
/// 考试操作票数据
///
public List OperationTicketList { get; set; }
}
}