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
7c864f7b
Commit
7c864f7b
authored
Jun 27, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-合同自动化代码提交
parent
58d31ac6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
TGzOfferInfoServiceImpl.java
...1/yifu/archives/service/impl/TGzOfferInfoServiceImpl.java
+3
-3
TGzOfferInfoMapper.xml
...ives-biz/src/main/resources/mapper/TGzOfferInfoMapper.xml
+6
-0
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TGzOfferInfoServiceImpl.java
View file @
7c864f7b
...
@@ -62,6 +62,8 @@ import java.math.BigDecimal;
...
@@ -62,6 +62,8 @@ import java.math.BigDecimal;
import
java.net.URLEncoder
;
import
java.net.URLEncoder
;
import
java.time.LocalDateTime
;
import
java.time.LocalDateTime
;
import
java.util.*
;
import
java.util.*
;
import
java.util.stream.Collectors
;
import
java.util.stream.Stream
;
/**
/**
* 瓜子offer信息接收表
* 瓜子offer信息接收表
...
@@ -548,9 +550,7 @@ public class TGzOfferInfoServiceImpl extends ServiceImpl<TGzOfferInfoMapper, TGz
...
@@ -548,9 +550,7 @@ public class TGzOfferInfoServiceImpl extends ServiceImpl<TGzOfferInfoMapper, TGz
//获取所有满足条件的信息待收集、候选人填写信息的offer提醒的数据
//获取所有满足条件的信息待收集、候选人填写信息的offer提醒的数据
if
(
Common
.
isNotNull
(
tGzOfferInfo
))
{
if
(
Common
.
isNotNull
(
tGzOfferInfo
))
{
if
(
Common
.
isEmpty
(
tGzOfferInfo
.
getOfferStatusArray
())
||
tGzOfferInfo
.
getOfferStatusArray
().
length
==
0
)
{
tGzOfferInfo
.
setStatusList
(
Stream
.
of
(
"9"
,
"98"
).
collect
(
Collectors
.
toList
()));
tGzOfferInfo
.
setOfferStatusArray
(
new
String
[]{
"9"
,
"98"
});
}
List
<
TGzOfferInfoVo
>
offerList
=
baseMapper
.
getTGzOfferInfoSendAlertList
(
tGzOfferInfo
);
List
<
TGzOfferInfoVo
>
offerList
=
baseMapper
.
getTGzOfferInfoSendAlertList
(
tGzOfferInfo
);
if
(
Common
.
isNotNull
(
offerList
)
&&
!
offerList
.
isEmpty
())
{
if
(
Common
.
isNotNull
(
offerList
)
&&
!
offerList
.
isEmpty
())
{
if
(
Common
.
isNotNull
(
offerList
)
&&
offerList
.
size
()
>
200
)
{
if
(
Common
.
isNotNull
(
offerList
)
&&
offerList
.
size
()
>
200
)
{
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TGzOfferInfoMapper.xml
View file @
7c864f7b
...
@@ -143,6 +143,12 @@
...
@@ -143,6 +143,12 @@
'${item}'
'${item}'
</foreach>
</foreach>
</if>
</if>
<if
test=
"tGzOfferInfo.statusList != null and tGzOfferInfo.statusList.size() > 0"
>
AND a.offer_status in
<foreach
item=
"item"
index=
"index"
collection=
"tGzOfferInfo.statusList"
open=
"("
separator=
","
close=
")"
>
'${item}'
</foreach>
</if>
<if
test=
"tGzOfferInfo.updateBy != null and tGzOfferInfo.updateBy.trim() != ''"
>
<if
test=
"tGzOfferInfo.updateBy != null and tGzOfferInfo.updateBy.trim() != ''"
>
AND a.update_by = #{tGzOfferInfo.updateBy}
AND a.update_by = #{tGzOfferInfo.updateBy}
</if>
</if>
...
...
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