From 05a54025b1ae843f9d21a4450ec05c9e420e7f24 Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期四, 28 九月 2023 10:47:37 +0800 Subject: [PATCH] bug修改 --- exam-system/src/main/resources/mapper/coalmine/CmStaffExamMapper.xml | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/resources/mapper/coalmine/CmStaffExamMapper.xml b/exam-system/src/main/resources/mapper/coalmine/CmStaffExamMapper.xml new file mode 100644 index 0000000..8cfd93e --- /dev/null +++ b/exam-system/src/main/resources/mapper/coalmine/CmStaffExamMapper.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.gkhy.exam.coalmine.mapper.CmStaffExamMapper"> + + <resultMap type="com.gkhy.exam.coalmine.entity.CmStaffExam" id="CmStaffExamMap"> + <result property="id" column="id"/> + <result property="staffId" column="staff_id"/> + <result property="startTime" column="start_time"/> + <result property="endTime" column="end_time"/> + <result property="examCenter" column="exam_center"/> + <result property="subject" column="subject"/> + <result property="result" column="result"/> + <result property="delFlag" column="del_flag"/> + <result property="createBy" column="create_by"/> + <result property="createTime" column="create_time"/> + <result property="updateBy" column="update_by"/> + <result property="updateTime" column="update_time"/> + </resultMap> + <sql id="selectAllField"> + select id, staff_id, start_time, end_time, exam_center, subject, result, del_flag, create_by, create_time, update_by, update_time + from cm_staff_exam + </sql> +</mapper> + -- Gitblit v1.9.2