liusheng
2024-03-21 c20c99f256e2f47bd45f0b48fb6b1bcc83960f1e
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?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.ruoyi.project.mapper.ServiceFundSharedMapper">
 
    <resultMap type="com.ruoyi.project.domain.ServiceFundShared" id="ServiceFundSharedResult">
        <result property="id" column="ID"/>
        <result property="infoid" column="InfoID"/>
        <result property="donorno" column="DonorNo"/>
        <result property="donorname" column="DonorName"/>
        <result property="delflag" column="del_flag"/>
        <result property="createBy" column="create_by"/>
        <result property="createTime" column="create_time"/>
        <result property="updateBy" column="update_by"/>
        <result property="updateTime" column="update_time"/>
        <result property="userno" column="UserNo"/>
        <result property="username" column="UserName"/>
        <result property="unitname" column="UnitName"/>
        <result property="unitno" column="UnitNo"/>
        <result property="unituserno" column="UnitUserNo"/>
        <result property="phone" column="Phone"/>
        <result property="annexbankcard" column="AnnexBankCard"/>
        <result property="annexregistform" column="AnnexRegistForm"/>
        <result property="pretaxcost" column="PretaxCost"/>
        <result property="taxedcost" column="TaxedCost"/>
        <result property="totalcost" column="TotalCost"/>
        <result property="procurementcost" column="ProcurementCost"/>
        <result property="expertcost" column="ExpertCost"/>
        <result property="ethicscost" column="EthicsCost"/>
        <result property="medicalcost" column="MedicalCost"/>
        <result property="familycost" column="FamilyCost"/>
        <result property="aftercarecost" column="AftercareCost"/>
        <result property="amountrequested" column="AmountRequested"/>
        <result property="applytype" column="ApplyType"/>
        <result property="prepaidamount" column="PrepaidAmount"/>
        <result property="invoicecount" column="InvoiceCount"/>
        <result property="attachcount" column="AttachCount"/>
        <result property="managerno" column="ManagerNo"/>
        <result property="managername" column="ManagerName"/>
        <result property="deptmentno" column="DeptmentNo"/>
        <result property="deptmentname" column="DeptmentName"/>
        <result property="opochecker" column="OPOchecker"/>
        <result property="finvicepresident" column="FinVicePresident"/>
        <result property="president" column="president"/>
        <result property="busvicepresident" column="BusVicePresident"/>
        <result property="officedirector" column="OfficeDirector"/>
        <result property="financedirector" column="FinanceDirector"/>
        <result property="financechecher" column="FinanceChecher"/>
        <result property="remark" column="Remark"/>
        <result property="isdistribute" column="Isdistribute"/>
        <result property="recordstatus" column="RecordStatus"/>
        <result property="uploadflag" column="uploadflag"/>
        <result property="uploadtime" column="uploadtime"/>
        <result property="flowlevel" column="FlowLevel"/>
        <result property="oaid" column="oaid"/>
        <result property="oabdzt" column="oabdzt"/>
        <result property="filename" column="filename"/>
        <result property="fileid" column="fileid"/>
        <result property="zffs" column="zffs"/>
        <result property="riqi" column="riqi"/>
        <result property="bh" column="bh"/>
        <result property="checkstatus" column="checkstatus"/>
        <result property="performancetype" column="performancetype"/>
        <result property="applyTime" column="apply_time"/>
    </resultMap>
 
    <sql id="selectServiceFundSharedVo">
        select ID,
               InfoID,
               DonorNo,
               DonorName,
               create_by,
               create_time,
               update_by,
               update_time,
               UserNo,
               UserName,
               UnitName,
               UnitNo,
               UnitUserNo,
               Phone,
               AnnexBankCard,
               AnnexRegistForm,
               PretaxCost,
               TaxedCost,
               TotalCost,
               ProcurementCost,
               ExpertCost,
               EthicsCost,
               MedicalCost,
               FamilyCost,
               AftercareCost,
               AmountRequested,
               ApplyType,
               PrepaidAmount,
               InvoiceCount,
               AttachCount,
               ManagerNo,
               ManagerName,
               DeptmentNo,
               DeptmentName,
               OPOchecker,
               FinVicePresident,
               president,
               BusVicePresident,
               OfficeDirector,
               FinanceDirector,
               FinanceChecher,
               Remark,
               Isdistribute,
               RecordStatus,
               uploadflag,
               uploadtime,
               FlowLevel,
               oaid,
               oabdzt,
               filename,
               fileid,
               serfunid,
               zffs,
               riqi,
               bh,
               checkstatus,
               applytime,
               performancetype
        from service_fund_shared
    </sql>
 
    <select id="getFundShareInfoById" resultType="com.ruoyi.project.domain.ServiceFundShared"
            resultMap="ServiceFundSharedResult">
        <include refid="selectServiceFundSharedVo"/>
        where serfunid = #{fundid}
    </select>
 
    <select id="selectServiceFundSharedList" parameterType="ServiceFundShared" resultMap="ServiceFundSharedResult">
        <include refid="selectServiceFundSharedVo"/>
        <where>
            <if test="infoid != null ">and InfoID = #{infoid}</if>
            <if test="donorno != null  and donorno != ''">and DonorNo = #{donorno}</if>
            <if test="donorname != null  and donorname != ''">and DonorName like concat('%', #{donorname}, '%')</if>
            <if test="userno != null  and userno != ''">and UserNo = #{userno}</if>
            <if test="username != null  and username != ''">and UserName like concat('%', #{username}, '%')</if>
            <if test="unitname != null  and unitname != ''">and UnitName like concat('%', #{unitname}, '%')</if>
            <if test="unitno != null  and unitno != ''">and UnitNo = #{unitno}</if>
            <if test="unituserno != null  and unituserno != ''">and UnitUserNo = #{unituserno}</if>
            <if test="phone != null  and phone != ''">and Phone = #{phone}</if>
            <if test="annexbankcard != null  and annexbankcard != ''">and AnnexBankCard = #{annexbankcard}</if>
            <if test="annexregistform != null  and annexregistform != ''">and AnnexRegistForm = #{annexregistform}</if>
            <if test="pretaxcost != null ">and PretaxCost = #{pretaxcost}</if>
            <if test="taxedcost != null ">and TaxedCost = #{taxedcost}</if>
            <if test="totalcost != null ">and TotalCost = #{totalcost}</if>
            <if test="expertcost != null ">and ExpertCost = #{expertcost}</if>
            <if test="ethicscost != null ">and EthicsCost = #{ethicscost}</if>
            <if test="medicalcost != null ">and MedicalCost = #{medicalcost}</if>
            <if test="familycost != null ">and FamilyCost = #{familycost}</if>
            <if test="aftercarecost != null ">and AftercareCost = #{aftercarecost}</if>
            <if test="amountrequested != null ">and AmountRequested = #{amountrequested}</if>
            <if test="applytype != null  and applytype != ''">and ApplyType = #{applytype}</if>
            <if test="prepaidamount != null ">and PrepaidAmount = #{prepaidamount}</if>
            <if test="invoicecount != null ">and InvoiceCount = #{invoicecount}</if>
            <if test="attachcount != null ">and AttachCount = #{attachcount}</if>
            <if test="managerno != null  and managerno != ''">and ManagerNo = #{managerno}</if>
            <if test="managername != null  and managername != ''">and ManagerName like concat('%', #{managername},
                '%')
            </if>
            <if test="deptmentno != null  and deptmentno != ''">and DeptmentNo = #{deptmentno}</if>
            <if test="deptmentname != null  and deptmentname != ''">and DeptmentName like concat('%', #{deptmentname},
                '%')
            </if>
            <if test="opochecker != null  and opochecker != ''">and OPOchecker = #{opochecker}</if>
            <if test="finvicepresident != null  and finvicepresident != ''">and FinVicePresident = #{finvicepresident}
            </if>
            <if test="busvicepresident != null  and busvicepresident != ''">and BusVicePresident = #{busvicepresident}
            </if>
            <if test="officedirector != null  and officedirector != ''">and OfficeDirector = #{officedirector}</if>
            <if test="financedirector != null  and financedirector != ''">and FinanceDirector = #{financedirector}</if>
            <if test="financechecher != null  and financechecher != ''">and FinanceChecher = #{financechecher}</if>
            <if test="remark != null  and remark != ''">and Remark = #{remark}</if>
            <if test="isdistribute != null  and isdistribute != ''">and Isdistribute = #{isdistribute}</if>
            <if test="recordstatus != null ">and RecordStatus = #{recordstatus}</if>
            <if test="uploadflag != null  and uploadflag != ''">and uploadflag = #{uploadflag}</if>
            <if test="uploadtime != null ">and uploadtime = #{uploadtime}</if>
            <if test="flowlevel != null ">and FlowLevel = #{flowlevel}</if>
            <if test="oaid != null  and oaid != ''">and oaid = #{oaid}</if>
            <if test="oabdzt != null  and oabdzt != ''">and oabdzt = #{oabdzt}</if>
            <if test="filename != null  and filename != ''">and filename like concat('%', #{filename}, '%')</if>
            <if test="fileid != null  and fileid != ''">and fileid = #{fileid}</if>
        </where>
    </select>
    <update id="delfundsharedInfoById">
        UPDATE service_fund_shared
        SET del_flag = 1
        WHERE ID = #{fundId}
          and del_flag != 1
    </update>
</mapper>