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
7f67ef0c
Commit
7f67ef0c
authored
Jun 12, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.12-查询条件等
parent
c1775c64
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
0 deletions
+45
-0
SocialHandleSearchVo.java
...fu/cloud/plus/v1/yifu/social/vo/SocialHandleSearchVo.java
+11
-0
TSocialDeadlineInfoSearchVo.java
...d/plus/v1/yifu/social/vo/TSocialDeadlineInfoSearchVo.java
+6
-0
TDispatchInfoMapper.xml
...ial-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
+21
-0
TSocialDeadlineInfoMapper.xml
...z/src/main/resources/mapper/TSocialDeadlineInfoMapper.xml
+7
-0
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/SocialHandleSearchVo.java
View file @
7f67ef0c
...
...
@@ -168,4 +168,15 @@ public class SocialHandleSearchVo extends TDispatchInfo {
@ExcelIgnore
@Schema
(
description
=
"税友自动化办理"
)
private
String
syFlag
;
// 1.7.12-hgw-各险种办理状态多选(养工失、医生大合并状态查询)
@ExcelProperty
(
"各险种办理状态"
)
@ExcelIgnore
private
String
[]
ygsYsdHandleStatusArr
;
// 1.7.12-hgw-派单办理状态多选
@ExcelProperty
(
"派单办理状态"
)
@ExcelIgnore
private
String
[]
socialHandleStatusArr
;
}
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/TSocialDeadlineInfoSearchVo.java
View file @
7f67ef0c
...
...
@@ -42,6 +42,12 @@ private String ids;
*/
@Schema
(
description
=
"创建时间区间"
)
private
LocalDateTime
[]
createTimes
;
@Schema
(
description
=
"更新时间起"
)
private
LocalDateTime
updateTimeStart
;
@Schema
(
description
=
"更新时间止"
)
private
LocalDateTime
updateTimeEnd
;
/**
* @Author fxj
* 查询数据起
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
View file @
7f67ef0c
...
...
@@ -2120,6 +2120,27 @@
<if
test=
"tDispatchInfo.ysdRemark != null and tDispatchInfo.ysdRemark.trim() != ''"
>
AND s.YSD_REMARK like concat('%',#{tDispatchInfo.ysdRemark},'%')
</if>
<if
test=
"tDispatchInfo.ygsYsdHandleStatusArr != null and tDispatchInfo.ygsYsdHandleStatusArr.length > 0"
>
AND (
s.YGS_HANDLE_STATUS in
<foreach
item=
"idStr"
index=
"index"
collection=
"tDispatchInfo.ygsYsdHandleStatusArr"
open=
"("
separator=
","
close=
")"
>
#{idStr}
</foreach>
or s.YSD_HANDLE_STATUS in
<foreach
item=
"idStr"
index=
"index"
collection=
"tDispatchInfo.ygsYsdHandleStatusArr"
open=
"("
separator=
","
close=
")"
>
#{idStr}
</foreach>
)
</if>
<if
test=
"tDispatchInfo.socialHandleStatusArr != null and tDispatchInfo.socialHandleStatusArr.length > 0"
>
AND a.SOCIAL_HANDLE_STATUS in
<foreach
item=
"idStr"
index=
"index"
collection=
"tDispatchInfo.socialHandleStatusArr"
open=
"("
separator=
","
close=
")"
>
#{idStr}
</foreach>
</if>
</if>
</where>
</sql>
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TSocialDeadlineInfoMapper.xml
View file @
7f67ef0c
...
...
@@ -108,6 +108,12 @@
<if
test=
"tSocialDeadlineInfo.updateTime != null"
>
AND a.UPDATE_TIME = #{tSocialDeadlineInfo.updateTime}
</if>
<if
test=
"tSocialDeadlineInfo.updateTimeStart != null"
>
AND a.UPDATE_TIME >= #{tSocialDeadlineInfo.updateTimeStart}
</if>
<if
test=
"tSocialDeadlineInfo.updateTimeEnd != null"
>
AND a.UPDATE_TIME
<![CDATA[ <= ]]>
#{tSocialDeadlineInfo.updateTimeEnd}
</if>
<if
test=
"tSocialDeadlineInfo.status != null and tSocialDeadlineInfo.status.trim() != ''"
>
AND a.STATUS = #{tSocialDeadlineInfo.status}
</if>
...
...
@@ -132,5 +138,6 @@
<include
refid=
"tSocialDeadlineInfo_where"
/>
</where>
order by a.month DESC
,a.id desc
</select>
</mapper>
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