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/CmStaffTrainMapper.xml | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/resources/mapper/coalmine/CmStaffTrainMapper.xml b/exam-system/src/main/resources/mapper/coalmine/CmStaffTrainMapper.xml new file mode 100644 index 0000000..49c0f6a --- /dev/null +++ b/exam-system/src/main/resources/mapper/coalmine/CmStaffTrainMapper.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.CmStaffTrainMapper"> + + <resultMap type="com.gkhy.exam.coalmine.entity.CmStaffTrain" id="CmStaffTrainMap"> + <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="unit" column="unit"/> + <result property="batch" column="batch"/> + <result property="subject" column="subject"/> + <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, unit, batch, subject, del_flag, create_by, create_time, update_by, update_time + from cm_staff_train + </sql> +</mapper> + -- Gitblit v1.9.2