37 lines
917 B
C#
37 lines
917 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RuralPower.Api
|
|
{
|
|
public class json_turn_excel_request
|
|
{
|
|
/// <summary>
|
|
/// 考试数据
|
|
/// </summary>
|
|
public Model.pow_exam Exam { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试工具数据
|
|
/// </summary>
|
|
public List<Model.pow_tool> ToolList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试故障数据
|
|
/// </summary>
|
|
public List<Model.pow_fault> FaultList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试选择题数据
|
|
/// </summary>
|
|
public List<Model.pow_choice_question> ChoiceQuestionList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试操作票数据
|
|
/// </summary>
|
|
public List<Model.pow_operation_ticket> OperationTicketList { get; set; }
|
|
}
|
|
}
|