98 lines
3.0 KiB
C#
98 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RuralPower
|
|
{
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public static class DataBase
|
|
{
|
|
/// <summary>
|
|
/// 绝对路径前缀
|
|
/// </summary>
|
|
public static string path { get; set; }
|
|
/// <summary>
|
|
/// 场景数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_scene> scene_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 台区数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_platform_area> platform_area_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 线路数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_line> line_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_exam> exam_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试工器具数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_exam_tool> exam_tool_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试故障数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_exam_fault> exam_fault_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试操作票步骤数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_exam_operation_ticket> exam_operation_ticket_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 考试操作票填写数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_operation_ticket> user_operation_ticket_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户数据
|
|
/// </summary>
|
|
public static List<DataService.Model.admin_user> user_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户考试数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_exam> user_exam_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户工器具数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_tool> user_tool_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户操作票数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_operation_proc_ticket> user_operation_proc_ticket_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户故障记录数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_fault_record> user_fault_record_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户故障数据
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_user_fault> user_fault_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 成绩
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_achievement> achievement_list { get; set; }
|
|
|
|
/// <summary>
|
|
/// 成绩详情
|
|
/// </summary>
|
|
public static List<DataService.Model.pow_achievement_details> achievement_details_list { get; set; }
|
|
}
|
|
}
|