123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <?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="organ_id_" property="organId"/>
- <result column="target_organ_id_" property="targetOrganId"/>
- <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" />
- <association property="organization" columnPrefix="organ_" resultMap="com.keao.edu.user.dao.OrganizationDao.Organization"/>
- <association property="operator" columnPrefix="user_" resultMap="com.keao.edu.user.dao.SysUserDao.SysUser"/>
- </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 (organ_id_,target_organ_id_,examination_basic_id_,trans_direction_,amount_,trans_time_,memo_,operator_user_id_,tenant_id_,create_time_)
- VALUES(#{organId},#{targetOrganId},#{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="organId!=null">
- organ_id_=#{organId},
- </if>
- <if test="targetOrganId!=null">
- target_organ_id_=#{targetOrganId},
- </if>
- <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>
- <sql id="queryExamManualLedgersCondition">
- <where>
- examination_basic_id_=#{examId}
- <if test="organId!=null and organId!=0">
- AND organ_id_=#{organId}
- </if>
- </where>
- </sql>
- <select id="queryExamManualLedgers" resultMap="ExamManualLedger" parameterType="map">
- SELECT
- eml.*,
- CASE WHEN o.name_ IS NOT NULL THEN o.name_ ELSE '其他' END organ_name_,
- su.real_name_ user_real_name_
- FROM
- exam_manual_ledger eml
- LEFT JOIN organization o ON eml.target_organ_id_ = o.id_
- LEFT JOIN sys_user su ON eml.operator_user_id_ = su.id_
- <include refid="queryExamManualLedgersCondition"/>
- ORDER BY id_
- <include refid="global.limit"/>
- </select>
- <select id="countExamManualLedgers" resultType="int">
- SELECT COUNT(*) FROM exam_manual_ledger
- <include refid="queryExamManualLedgersCondition"/>
- </select>
- <select id="getExamManualLedgerStatistics" resultType="com.keao.edu.user.dto.ExamManualLedgerStatisticsDto">
- SELECT
- COUNT( id_ ) expenditureNum,
- SUM( amount_ ) expenditureFee
- FROM
- exam_manual_ledger
- WHERE
- examination_basic_id_ = #{examId}
- <if test="organId!=null and organId!=0">
- AND organ_id_=#{organId}
- </if>
- AND trans_direction_ = 'EXPENDITURE'
- </select>
- <select id="getExamOrganManualLedgers" resultMap="ExamManualLedger">
- SELECT
- *
- FROM
- exam_manual_ledger
- WHERE
- examination_basic_id_ = #{examId}
- AND organ_id_ = #{organId}
- AND DATE_FORMAT( trans_time_, '%Y-%m-%d' ) IN
- <foreach collection="days" item="day" separator="," open="(" close=")">
- #{day}
- </foreach>
- </select>
- </mapper>
|