Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
7a2754b7
Commit
7a2754b7
authored
Aug 24, 2022
by
zhaji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
"feature-zhaJi:优化减员办理查询字段,优化商险文件类型判断"
parent
a050d457
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
Common.java
.../com/yifu.cloud.plus.v1/yifu/common/core/util/Common.java
+1
-1
InsuranceRefundHandlingParam.java
...s/v1/yifu/insurances/vo/InsuranceRefundHandlingParam.java
+8
-2
TInsuranceDetailMapper.xml
...-biz/src/main/resources/mapper/TInsuranceDetailMapper.xml
+4
-4
No files found.
yifu-common/yifu-common-core/src/main/java/com/yifu.cloud.plus.v1/yifu/common/core/util/Common.java
View file @
7a2754b7
...
@@ -480,7 +480,7 @@ public class Common {
...
@@ -480,7 +480,7 @@ public class Common {
* @param null
* @param null
* @return
* @return
**/
**/
private
static
final
String
insuranceSuffixList
=
"pdf|png|jpg|
word|excel
|rar|zip"
;
private
static
final
String
insuranceSuffixList
=
"pdf|png|jpg|
doc|docx|xls|xlsx
|rar|zip"
;
/**
/**
* 判断是否为允许的上传文件类型,true表示允许
* 判断是否为允许的上传文件类型,true表示允许
...
...
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceRefundHandlingParam.java
View file @
7a2754b7
...
@@ -89,6 +89,12 @@ public class InsuranceRefundHandlingParam implements Serializable {
...
@@ -89,6 +89,12 @@ public class InsuranceRefundHandlingParam implements Serializable {
@Schema
(
description
=
"办理人"
)
@Schema
(
description
=
"办理人"
)
private
String
updateBy
;
private
String
updateBy
;
/**
* 派单类型
*/
@Schema
(
description
=
"派单类型"
)
private
String
buyType
;
/**
/**
* 派单人
* 派单人
*/
*/
...
@@ -99,13 +105,13 @@ public class InsuranceRefundHandlingParam implements Serializable {
...
@@ -99,13 +105,13 @@ public class InsuranceRefundHandlingParam implements Serializable {
* 派单开始时间
* 派单开始时间
*/
*/
@Schema
(
description
=
"派单开始时间"
)
@Schema
(
description
=
"派单开始时间"
)
private
String
createStartTim
e
;
private
String
startDat
e
;
/**
/**
* 派单结束时间
* 派单结束时间
*/
*/
@Schema
(
description
=
"派单结束时间"
)
@Schema
(
description
=
"派单结束时间"
)
private
String
createEndTim
e
;
private
String
endDat
e
;
}
}
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/TInsuranceDetailMapper.xml
View file @
7a2754b7
...
@@ -729,11 +729,11 @@
...
@@ -729,11 +729,11 @@
<if
test=
"param.createName != null and param.createName.trim() != ''"
>
<if
test=
"param.createName != null and param.createName.trim() != ''"
>
and refund.CREATE_NAME like concat('%',replace(replace(#{param.createName},'_','\_'),'%','\%'),'%')
and refund.CREATE_NAME like concat('%',replace(replace(#{param.createName},'_','\_'),'%','\%'),'%')
</if>
</if>
<if
test=
"param.
createStartTime != null and param.createStartTim
e.trim() != ''"
>
<if
test=
"param.
startDate != null and param.startDat
e.trim() != ''"
>
AND refund.CREATE_TIME
<![CDATA[ >= ]]>
concat(#{param.
createStartTim
e}, ' 00:00:00')
AND refund.CREATE_TIME
<![CDATA[ >= ]]>
concat(#{param.
startDat
e}, ' 00:00:00')
</if>
</if>
<if
test=
"param.
createEndTime != null and param.createEndTim
e.trim() != ''"
>
<if
test=
"param.
endDate != null and param.endDat
e.trim() != ''"
>
AND refund.CREATE_TIME
<![CDATA[ <= ]]>
concat(#{param.
createEndTim
e}, ' 23:59:59')
AND refund.CREATE_TIME
<![CDATA[ <= ]]>
concat(#{param.
endDat
e}, ' 23:59:59')
</if>
</if>
ORDER BY refund.CREATE_TIME DESC,detail.ID ASC
ORDER BY refund.CREATE_TIME DESC,detail.ID ASC
</select>
</select>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment