using System; using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 试卷 /// [Serializable] public class ExamData { /// /// 操作成功 /// public string msg; /// /// /// public int code; /// /// /// public DataItem data; } /// /// 试卷信息 /// [Serializable] public class DataItem { /// /// /// public string createBy; /// /// /// public string createTime; /// /// /// public string updateBy; /// /// /// public string updateTime; /// /// /// public string remark; /// /// /// public string pageNum; /// /// /// public string pageSize; /// /// /// public int id; /// /// /// public string simulationId; /// /// /// public string courseId; /// /// /// public string examName; /// /// /// public string taskBackground; /// /// /// public string faultId; //public FaultData faultData; /// /// /// public FaultData faultData; /// /// /// public string totalScore; /// /// /// public string assessPoints; /// /// [{"stepName":"查看任务单","testPoint":"请点击移动作业终端,查看您接受到的任务工单","defaultScore":0,"isKey":false},{"stepName":"工作预约","testPoint":"请电话联系客户","defaultScore":0,"isKey":false},{"stepName":"办理工作票","testPoint":"请选择合适的工作票,并正确填写","defaultScore":5,"isKey":false},{"stepName":"填写装拆工单","testPoint":"请填写正确的拆装工作单","defaultScore":5,"isKey":false},{"stepName":"正确着装","testPoint":"请前往工具间,选取工作服、绝缘鞋、安全帽、手套,到梳妆镜面前进行换装","defaultScore":5,"isKey":false},{"stepName":"选取工器具","testPoint":"请前往工具间,按照顺序选取剥线钳,绝缘螺丝刀,验电笔,工作证,盒装封印,绝缘胶带,三相四线费控智能电能表","defaultScore":10,"isKey":false},{"stepName":"与客户沟通","testPoint":"请前往现场,出示工作牌,告知工作内容。","defaultScore":5,"isKey":false},{"stepName":"班前会","testPoint":"清前往现场,由工作负责人检查着装是否规范、个人防护用品是否合格齐备、人员精神状态是否良好","defaultScore":0,"isKey":false},{"stepName":"接线检查","testPoint":"请检查接线正确性","defaultScore":3,"isKey":false},{"stepName":"断开电源并验电","testPoint":"请先断电,并使用验电笔进行三步验电法","defaultScore":4,"isKey":false},{"stepName":"核对和抄录计量设备信息","testPoint":"请在拆表前记录并保存当前示数,并核对电能表铭牌内容和有效检验合格标志","defaultScore":3,"isKey":false},{"stepName":"拆除电能计量装置","testPoint":"请按要求拆除电能计量装置","defaultScore":20,"isKey":true},{"stepName":"安装电能表","testPoint":"请按要求安装电能表","defaultScore":20,"isKey":true},{"stepName":"安装检查","testPoint":"请检查接线是否正确","defaultScore":5,"isKey":false},{"stepName":"现场通电及检查","testPoint":"请按要求进行通电及检查","defaultScore":5,"isKey":false},{"stepName":"实施封印","testPoint":"请对电能表、计量箱(柜)加封","defaultScore":3,"isKey":false},{"stepName":"填写告知单","testPoint":"请填写正确的结果告知单","defaultScore":4,"isKey":false},{"stepName":"清理现场","testPoint":"请把工器具收回背包并清理现场","defaultScore":3,"isKey":false}] /// public string examContent; public List examContentJson; /// /// /// public string sceneId; /// /// /// public string sceneName; /// /// /// public string sceneScriptId; /// /// /// public int status; public string backJson; } [Serializable] public class ExamContentJsonItem { /// /// 查看任务单 /// public string stepName; /// /// 请点击移动作业终端,查看您接受到的任务工单 /// public string testPoint; /// /// /// public int defaultScore; /// /// /// public string isKey; } /// /// 任务书数据 /// [Serializable] public class TaskListData { /// /// 张三 /// public string leader ; /// /// /// public string userContects ; /// /// XX线路 /// public string line ; /// /// 李四 /// public string licensor ; /// /// XX台区 /// public string station ; /// /// 不停电 /// public string hasElectric ; /// /// 王五、赵六 /// public string member ; /// /// /// public string userTel ; /// /// 班组B /// public string team ; /// /// XX低压用户 /// public string userName ; /// /// 孙七 /// public string issuer ; } [Serializable] public class FaultData { public string createBy; public string createTime; public string updateBy; public string updateTime; public string remark; public string pageNum; public string pageSize; public string id; public string faultType; public string subject; public string subjectId; public string faultText; } //public class FaultData //{ // public string faultText; //}