|
@@ -0,0 +1,85 @@
|
|
|
+<?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.ExamManualLedgerDao">
|
|
|
+
|
|
|
+ <resultMap type="com.keao.edu.user.entity.ExamManualLedger" id="ExamManualLedger">
|
|
|
+ <result column="id_" property="id" />
|
|
|
+ <result column="examination_basic_id_" property="examinationBasicId" />
|
|
|
+ <result column="trans_direction_" property="transDirection" />
|
|
|
+ <result column="amount_" property="amount" />
|
|
|
+ <result column="trans_time_" property="transTime" />
|
|
|
+ <result column="memo_" property="memo" />
|
|
|
+ <result column="operator_user_id_" property="operatorUserId" />
|
|
|
+ <result column="tenant_id_" property="tenantId" />
|
|
|
+ <result column="create_time_" property="createTime" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="ExamManualLedger" >
|
|
|
+ SELECT * FROM exam_manual_ledger WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="ExamManualLedger">
|
|
|
+ SELECT * FROM exam_manual_ledger ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.keao.edu.user.entity.ExamManualLedger" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
|
|
|
+ <!--
|
|
|
+ <selectKey resultClass="int" keyProperty="id" >
|
|
|
+ SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
|
|
|
+ </selectKey>
|
|
|
+ -->
|
|
|
+ INSERT INTO exam_manual_ledger (examination_basic_id_,trans_direction_,amount_,trans_time_,memo_,operator_user_id_,tenant_id_,create_time_)
|
|
|
+ VALUES(#{examinationBasicId},#{transDirection},#{amount},#{transTime},#{memo},#{operatorUserId},#{tenantId},NOW())
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.keao.edu.user.entity.ExamManualLedger">
|
|
|
+ UPDATE exam_manual_ledger
|
|
|
+ <set>
|
|
|
+ <if test="examinationBasicId != null">
|
|
|
+ examination_basic_id_ = #{examinationBasicId},
|
|
|
+ </if>
|
|
|
+ <if test="transDirection != null">
|
|
|
+ trans_direction_ = #{transDirection},
|
|
|
+ </if>
|
|
|
+ <if test="amount != null">
|
|
|
+ amount_ = #{amount},
|
|
|
+ </if>
|
|
|
+ <if test="transTime != null">
|
|
|
+ trans_time_ = #{transTime},
|
|
|
+ </if>
|
|
|
+ <if test="memo != null">
|
|
|
+ memo_ = #{memo},
|
|
|
+ </if>
|
|
|
+ <if test="operatorUserId != null">
|
|
|
+ operator_user_id_ = #{operatorUserId},
|
|
|
+ </if>
|
|
|
+ </set> WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete" >
|
|
|
+ DELETE FROM exam_manual_ledger WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="ExamManualLedger" parameterType="map">
|
|
|
+ SELECT * FROM exam_manual_ledger
|
|
|
+ WHERE examination_basic_id_=#{examId}
|
|
|
+ ORDER BY id_
|
|
|
+ <include refid="global.limit"/>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM exam_manual_ledger
|
|
|
+ WHERE examination_basic_id_=#{examId}
|
|
|
+ </select>
|
|
|
+</mapper>
|