| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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.keao.edu.user.dao.ExamCertificationDao">
-
- <resultMap type="com.keao.edu.user.entity.ExamCertification" id="ExamCertification">
- <result column="id_" property="id" />
- <result column="examination_basic_id_" property="examinationBasicId" />
- <result column="student_id_" property="studentId" />
- <result column="card_no_" property="cardNo" />
- <result column="subject_id_" property="subjectId" />
- <result column="level_" property="level" />
- <result column="exam_start_time_" property="examStartTime" />
- <result column="exam_end_time_" property="examEndTime" />
- <result column="exam_address_" property="examAddress" />
- <result column="create_time_" property="createTime" />
- <result column="update_time_" property="updateTime" />
- <result column="tenant_id_" property="tenantId" />
- </resultMap>
-
- <!-- 根据主键查询一条记录 -->
- <select id="get" resultMap="ExamCertification" >
- SELECT * FROM exam_certification WHERE id_ = #{id}
- </select>
-
- <!-- 全查询 -->
- <select id="findAll" resultMap="ExamCertification">
- SELECT * FROM exam_certification ORDER BY id_
- </select>
-
- <!-- 向数据库增加一条记录 -->
- <insert id="insert" parameterType="com.keao.edu.user.entity.ExamCertification" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
- <!--
- <selectKey resultClass="int" keyProperty="id" >
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
- </selectKey>
- -->
- INSERT INTO exam_certification (id_,examination_basic_id_,student_id_,card_no_,subject_id_,level_,exam_start_time_,exam_end_time_,exam_address_,create_time_,update_time_,tenant_id_)
- VALUES(#{id},#{examinationBasicId},#{studentId},#{cardNo},#{subjectId},#{level},#{examStartTime},#{examEndTime},#{examAddress},NOW(),NOW(),#{tenantId})
- </insert>
-
- <!-- 根据主键查询一条记录 -->
- <update id="update" parameterType="com.keao.edu.user.entity.ExamCertification">
- UPDATE exam_certification
- <set>
- <if test="examinationBasicId != null">
- examination_basic_id_ = #{examinationBasicId},
- </if>
- <if test="subjectId != null">
- subject_id_ = #{subjectId},
- </if>
- <if test="examEndTime != null">
- exam_end_time_ = #{examEndTime},
- </if>
- <if test="id != null">
- id_ = #{id},
- </if>
- <if test="examStartTime != null">
- exam_start_time_ = #{examStartTime},
- </if>
- <if test="tenantId != null">
- tenant_id_ = #{tenantId},
- </if>
- <if test="cardNo != null">
- card_no_ = #{cardNo},
- </if>
- <if test="studentId != null">
- student_id_ = #{studentId},
- </if>
- <if test="level != null">
- level_ = #{level},
- </if>
- <if test="examAddress != null">
- exam_address_ = #{examAddress},
- </if>
- update_time_ = NOW()
- </set> WHERE id_ = #{id}
- </update>
-
- <!-- 根据主键删除一条记录 -->
- <delete id="delete" >
- DELETE FROM exam_certification WHERE id_ = #{id}
- </delete>
-
- <!-- 分页查询 -->
- <select id="queryPage" resultMap="ExamCertification" parameterType="map">
- SELECT * FROM exam_certification ORDER BY id_ <include refid="global.limit"/>
- </select>
-
- <!-- 查询当前表的总记录数 -->
- <select id="queryCount" resultType="int">
- SELECT COUNT(*) FROM exam_certification
- </select>
- </mapper>
|