Blame view

ProjectSalaryHistoryMapper.xml 1.14 KB
涂亚平 committed
1 2 3 4 5 6 7
<?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.subsidy.mapper.ProjectSalaryHistoryMapper">

    <select id="salaryCount" resultType="com.subsidy.vo.labor.SalaryListSumVO">
        SELECT
            count( 1 ) cnt,
涂亚平 committed
8
            round(sum( t.salary ),2) AS salary
涂亚平 committed
9 10 11 12
        FROM
            project_salary_history t
        WHERE
            t.delete_date IS NULL
涂亚平 committed
13
            AND t.project_mapping_id = #{projectId}
涂亚平 committed
14
            AND t.member_id = #{memberId}
涂亚平 committed
15
            and t.commit_status = 1
涂亚平 committed
16 17 18 19 20 21 22 23
    </select>

    <select id="salaryList" resultType="com.subsidy.vo.labor.SalaryListVO">
        SELECT
            t.id,
            t.bank,
            t.salary,
            t.salary_mark,
涂亚平 committed
24
            t.salary_date,
涂亚平 committed
25 26 27 28 29
            t.payroll_account
        FROM
            project_salary_history t
        WHERE
            t.delete_date IS NULL
涂亚平 committed
30
            AND t.project_mapping_id = #{projectId}
涂亚平 committed
31
            AND t.member_id = #{memberId}
涂亚平 committed
32
            and t.commit_status = 1
涂亚平 committed
33 34 35 36 37
        ORDER BY
            t.create_date DESC
    </select>

</mapper>