RuralPowerCompetition_yizhe.../DataService/Api/json_turn_excel_request.cs

40 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataService.Api
{
/// <summary>
/// json转excel接口请求实体
/// </summary>
public class json_turn_excel_request
{
/// <summary>
/// 考试数据
/// </summary>
public DataService.Other.exam_scene_line_platform_area Exam { get; set; }
/// <summary>
/// 考试工具数据
/// </summary>
public List<Model.pow_exam_tool> ToolList { get; set; }
/// <summary>
/// 考试故障数据
/// </summary>
public List<Model.pow_exam_fault> FaultList { get; set; }
/// <summary>
/// 考试选择题数据
/// </summary>
public List<Model.pow_choice_question> ChoiceQuestionList { get; set; }
/// <summary>
/// 考试操作票数据
/// </summary>
public List<Model.pow_exam_operation_ticket> OperationTicketList { get; set; }
}
}