xiaogang
2022-05-25 6eb064b4aa583bc8be55b23a82badc5d8442cbb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?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="feeAccountDetailServiceDaoImpl">
 
    <!-- 查询费用明细信息 add by wuxw 2018-07-03 -->
    <select id="getFeeAccountDetailInfo" parameterType="Map" resultType="Map">
        select
        t.fad_id,t.fad_id fadId,
        t.detail_id,t.detail_id detailId,
        t.community_id,t.community_id communityId,
        t.state,t.amount,td.name stateName
        from fee_account_detail t
        left join t_dict td on t.state = td.status_cd and td.table_name = 'fee_account_detail' and td.table_columns = 'state'
        where 1 = 1
        <if test="fadId != null and fadId != ''">
            and t.fadId = #{fadId}
        </if>
        <if test="detailId !=null and detailId != ''">
            and t.detail_id= #{detailId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="state !=null and state != ''">
            and t.state= #{state}
        </if>
        <if test="amount !=null and amount != ''">
            and t.amount= #{amount}
        </if>
        order by t.create_time desc
        <if test="page != -1 and page != null ">
            limit #{page}, #{row}
        </if>
    </select>
 
    <!-- 查询费用明细数量 add by wuxw 2018-07-03 -->
    <select id="queryFeeAccountDetailsCount" parameterType="Map" resultType="Map">
        select count(1) count
        from fee_account_detail t
        where 1 =1
        <if test="fadId != null and fadId != ''">
            and t.fadId = #{fadId}
        </if>
        <if test="detailId !=null and detailId != ''">
            and t.detail_id= #{detailId}
        </if>
        <if test="communityId !=null and communityId != ''">
            and t.community_id= #{communityId}
        </if>
        <if test="state !=null and state != ''">
            and t.state= #{state}
        </if>
        <if test="amount !=null and amount != ''">
            and t.amount= #{amount}
        </if>
    </select>
 
    <!-- 保存费用明细信息至 instance表中 add by wuxw 2018-07-03 -->
    <insert id="saveFeeAccountDetail" parameterType="Map">
        insert into fee_account_detail(
        fad_id,detail_id,community_id,state,amount
        <if test="createTime != null and createTime != ''">
            ,create_time
        </if>
        )
        values(#{fadId},#{detailId},#{communityId},#{state},#{amount}
        <if test="createTime != null and createTime != ''">
            ,#{createTime}
        </if>
        )
    </insert>
 
</mapper>