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/CmStaffQaMapper.xml | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/resources/mapper/coalmine/CmStaffQaMapper.xml b/exam-system/src/main/resources/mapper/coalmine/CmStaffQaMapper.xml new file mode 100644 index 0000000..a59351a --- /dev/null +++ b/exam-system/src/main/resources/mapper/coalmine/CmStaffQaMapper.xml @@ -0,0 +1,25 @@ +<?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.CmStaffQaMapper"> + + <resultMap type="com.gkhy.exam.coalmine.entity.CmStaffQa" id="CmStaffQaMap"> + <result property="id" column="id"/> + <result property="staffId" column="staff_id"/> + <result property="name" column="name"/> + <result property="operateTypeId" column="operate_type_id"/> + <result property="qualificationType" column="qualification_type"/> + <result property="jobCategory" column="job_category"/> + <result property="operationItems" column="operation_items"/> + <result property="expiredTime" column="expired_time"/> + <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, name, operate_type_id, qualification_type, job_category, operation_items, expired_time, del_flag, create_by, create_time, update_by, update_time + from cm_staff_qa + </sql> +</mapper> + -- Gitblit v1.9.2