InwardtreatyinfoMapper.xml
17 KB
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?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="cn.com.polysoft.template.dao.InwardtreatyinfoMapper">
<select id="selectInwardtreatyInfo" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
i.cointype coinType,
i.billperiod billPeriod,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
<where>
<!--2021年4月14日,增加过滤超赔类型的合约-begin-->
i.treatytype not in ('41','51','61','71')
<!--2021年4月14日,增加过滤超赔类型的合约-end-->
<if test="brokerName!=null and brokerName!=''">and brokername like #{brokerName}</if>
<if test="separateOutName!=null and separateOutName!=''">and inreinsname like #{separateOutName}</if>
<if test="contractStartTime!=null and contractStartTime!=''">and startdate = #{contractStartTime}</if>
<if test="contractEndTime!=null and contractEndTime!=''">and enddate = #{contractEndTime}</if>
<!-- <if test="contractCodeOther!=null and contractCodeOther!=''">and counterpartyid = #{contractCodeOther}</if>-->
<if test="contractCodeOther!=null and contractCodeOther!=''">
AND i.counterpartyid like CONCAT('%',#{contractCodeOther},'%') or i.treatyid like CONCAT('%',#{contractCodeOther},'%')
</if>
</where>
order by treatyId
</select>
<select id="selectInwardtreatyInfoByTreatyId" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
i.cointype coinType,
i.billperiod billPeriod,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
<where>
<!--2021年4月14日,增加过滤超赔类型的合约-begin-->
i.treatytype not in ('41','51','61','71')
<!--2021年4月14日,增加过滤超赔类型的合约-end-->
<if test="treatyId!=null and treatyId!=''">and i.treatyid = #{treatyId}</if>
</where>
</select>
<select id="selectInwardtreatyInfo2" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
<where>
<!--2021年4月14日,增加过滤超赔类型的合约-begin-->
i.treatytype not in ('41','51','61','71')
<!--2021年4月14日,增加过滤超赔类型的合约-end-->
<if test="brokerName!=null and brokerName!=''">or brokername = #{brokerName}</if>
<if test="separateOutName!=null and separateOutName!=''">or inreinsname = #{separateOutName}</if>
<if test="contractStartTime!=null and contractStartTime!=''">or startdate = #{contractStartTime}</if>
<if test="contractEndTime!=null and contractEndTime!=''">or enddate = #{contractEndTime}</if>
<if test="contractCodeOther!=null and contractCodeOther!=''">or counterpartyid = #{contractCodeOther}</if>
</where>
order by treatyId
</select>
<select id="selectByContractCodeOther" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
where counterpartyid = #{contractCodeOther}
</select>
<select id="selectBySeparateOutName" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
where inreinsname = #{separateOutName}
</select>
<select id="selectByBrokerName" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
where brokername = #{brokerName}
</select>
<select id="selectByStartDate" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
where startdate = #{contractStartTime}
</select>
<select id="selectByEndDate" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
where enddate = #{contractEndTime}
</select>
<select id="selectInwardtreatyInfoAll" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
<where>
<!--2021年4月14日,增加过滤超赔类型的合约-begin-->
i.treatytype not in ('41','51','61','71')
<!--2021年4月14日,增加过滤超赔类型的合约-end-->
</where>
order by treatyId
</select>
<select id="selectInwardtreatyInfoBySearch" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto"
parameterType="cn.com.polysoft.template.dto.ContractCodeDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
t.mark mark,
i.cointype coinType,
i.billperiod billPeriod
from inwardtreatyinfo i
left join t_company t on i.inreinscode = t.company_code
<where>
<!--2021年4月14日,增加过滤超赔类型的合约-begin-->
i.treatytype not in ('41','51','61','71')
<!--2021年4月14日,增加过滤超赔类型的合约-end-->
<if test="searchContractCode!=null and searchContractCode!=''">
AND i.treatyid like #{searchContractCode}
</if>
<if test="searchContractName!=null and searchContractName!=''">
AND i.treatyname like #{searchContractName}
</if>
<if test="searchSeparateOutName!=null and searchSeparateOutName!=''">
AND i.inreinsname like #{searchSeparateOutName}
</if>
<if test="searchBrokerName!=null and searchBrokerName!=''">
AND i.brokername like #{searchBrokerName}
</if>
<if test="searchContractStartTimeStart!=null and searchContractStartTimeStart!=''">
<![CDATA[ AND i.startdate >= #{searchContractStartTimeStart} ]]>
</if>
<if test="searchContractStartTimeEnd!=null and searchContractStartTimeEnd!=''">
<![CDATA[ AND i.startdate <= #{searchContractStartTimeEnd} ]]>
</if>
<if test="searchContractEndTimeStart!=null and searchContractEndTimeStart!=''">
<![CDATA[ AND i.enddate >= #{searchContractEndTimeStart} ]]>
</if>
<if test="searchContractEndTimeEnd!=null and searchContractEndTimeEnd!=''">
<![CDATA[ AND i.enddate <= #{searchContractEndTimeEnd} ]]>
</if>
</where>
order by treatyId
</select>
<select id="selectTreatyidByCounterpartyid" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto">
SELECT i.treatyid,i.treatyname from inwardtreatyinfo i WHERE i.counterpartyid=#{counterpartyid}
</select>
<select id="selectInwardtitem" resultType="cn.com.polysoft.template.dto.SelectInwarditemDto">
select id,classcode from inwardtitem WHERE char_length(classcode)=1
</select>
<select id="updateInwarditem" parameterType="cn.com.polysoft.template.dto.SelectInwarditemDto">
UPDATE inwardtitem SET classcode = #{classcode} WHERE id=#{id}
</select>
<select id="getByOtherContractCode" resultType="cn.com.polysoft.template.entity.InwardtreatyinfoEntity">
SELECT * from inwardtreatyinfo t WHERE t.counterpartyid = #{otherContractCode}
</select>
<!-- 根据合约编号和对方合约编号查询合约信息-->
<select id="getByTreatyParam" resultType="cn.com.polysoft.template.dto.InwardtreatyInfoDto">
select i.id id,
i.treatyid treatyId,
i.treatyname treatyName,
i.counterpartyid counterpartyId,
i.inreinsname inreinsName,
i.inreinscode inreinsCode,
i.brokername brokerName,
i.brokercode brokerCode,
i.startdate startDate,
i.enddate endDate,
i.agenttype agentType,
i.cointype coinType,
i.billperiod billPeriod
from inwardtreatyinfo i
<where>
i.treatyid = #{treatyId}
<if test="counterpartyId != null and counterpartyId != ''">
and i.counterpartyid = #{counterpartyId}
</if>
</where>
</select>
<select id="selcetItemid" resultType="java.util.HashMap">
SELECT DISTINCT
f.treatyid 我方合约编码,
t.treaty_no 对方合约编码,
(
SELECT
counterpartyid
FROM
inwardtreatyinfo
WHERE
treatyid = f.treatyid
) 数据库中对方合约编码,
f.uwyear 我方业务年度,
t.uw_year 对方业务年度,
t.itemid 对方分项号,
f.sectionno 我方分项号,
t.class_code 对方险类描述,
f.classcode 我方险类代码,
f.currency 我方账单币种,
t.account_currency 对方账单币种,
(
CASE
WHEN f.currency = t.account_currency THEN
'账单币种一致'
ELSE
'账单币种不一致'
END
) 账单币种是否一致,
f.treatyname 我方合约名称,
t.treaty_name 对方合约名称,
f.yourref 账单号
FROM
fzacc f,
treaty_soa_info_copy T
WHERE
f.yourref = t.account_no
AND t.account_no NOT IN (
'AOTZ2019000901619',
'AOTZ2019000901630',
'AOTZ2019000901637'
)
AND f.treatyid NOT IN ('IPM20170028')
AND f.sectionno = t.itemid
ORDER BY
f.treatyid
</select>
<select id="selcetItemid2" resultType="java.util.HashMap">
SELECT DISTINCT
f.treatyid 我方合约编码,
T .treaty_no 对方合约编码,
(
SELECT
counterpartyid
FROM
inwardtreatyinfo
WHERE
treatyid = f.treatyid
) 数据库中对方合约编码,
f.uwyear 我方业务年度,
T .uw_year 对方业务年度,
T .itemid 对方分项号,
f.sectionno 我方分项号,
T .class_code 对方险类描述,
f.classcode 我方险类代码,
f.currency 我方账单币种,
T .account_currency 对方账单币种,
(
CASE
WHEN f.currency = T .account_currency THEN
'账单币种一致'
ELSE
'账单币种不一致'
END
) 账单币种是否一致,
f.treatyname 我方合约名称,
T .treaty_name 对方合约名称,
f.yourref 账单号
FROM
fzacc f,
treaty_soa_info_copy T
WHERE
f.yourref = T .account_no
AND T .account_no NOT IN (
'AOTZ2019000901619',
'AOTZ2019000901630',
'AOTZ2019000901637'
)
AND f.treatyid NOT IN ('IPM20170028')
<![CDATA[ AND f.sectionno <> T .itemid ]]>
ORDER BY
f.treatyid
</select>
<select id="selectInwardItemEntity" resultType="cn.com.polysoft.template.entity.InwardItemEntity"
parameterType="cn.com.polysoft.template.entity.InwardItemEntity">
SELECT
*
FROM
t_inward_item it
WHERE 1=1
<if test="otherTreatyid!=null and otherTreatyid!=''">
AND it.other_treatyid = #{otherTreatyid}
</if>
<if test="otherItemid!=null and otherItemid!=''">
AND it.other_itemid = #{otherItemid}
</if>
<if test="cointype!=null and cointype!=''">
AND it.cointype = #{cointype}
</if>
<if test="otherClass!=null and otherClass!=''">
AND it.other_class = #{otherClass}
</if>
</select>
<select id="getByTreatyId" resultType="cn.com.polysoft.template.entity.InwardtreatyinfoEntity">
select * from inwardtreatyinfo where treatyid = #{treatyId}
</select>
</mapper>