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
6620208b
Commit
6620208b
authored
Dec 10, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.18-优化导入与更新
parent
21430633
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
8 deletions
+12
-8
SysHouseHoldInfoServiceImpl.java
...yifu/social/service/impl/SysHouseHoldInfoServiceImpl.java
+12
-8
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/SysHouseHoldInfoServiceImpl.java
View file @
6620208b
...
...
@@ -1340,10 +1340,12 @@ public class SysHouseHoldInfoServiceImpl extends ServiceImpl<SysHouseHoldInfoMap
}
else
{
info
.
setIsSingle
(
CommonConstants
.
ONE_STRING
);
// MVP 1.7.18,单个里,加了接口通道:
// 2025-12-10 11:06:25 用例评审,产品与测试要求默认单个,而不是空,错误的也是默认单个
info
.
setIsSingleYgsPush
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
excel
.
getIsSingleYgsPush
())
&&
HouseConfigConstants
.
IS_SINGLE_NO
.
equals
(
excel
.
getIsSingleYgsPush
()))
{
info
.
setIsSingleYgsPush
(
CommonConstants
.
ZERO_STRING
);
if
(
Common
.
isNotNull
(
excel
.
getIsSingleYgsPush
()))
{
if
(
HouseConfigConstants
.
IS_SINGLE_NO
.
equals
(
excel
.
getIsSingleYgsPush
()))
{
info
.
setIsSingleYgsPush
(
CommonConstants
.
ZERO_STRING
);
}
else
if
(
HouseConfigConstants
.
IS_SINGLE_YES
.
equals
(
excel
.
getIsSingleYgsPush
()))
{
info
.
setIsSingleYgsPush
(
CommonConstants
.
ONE_STRING
);
}
}
}
}
...
...
@@ -1374,10 +1376,12 @@ public class SysHouseHoldInfoServiceImpl extends ServiceImpl<SysHouseHoldInfoMap
}
else
{
info
.
setIsSingleYsd
(
CommonConstants
.
ONE_STRING
);
// MVP 1.7.18,单个里,加了接口通道:
// 2025-12-10 11:06:25 用例评审,产品与测试要求默认单个,而不是空,错误的也是默认单个
info
.
setIsSingleYsdPush
(
CommonConstants
.
ONE_STRING
);
if
(
Common
.
isNotNull
(
excel
.
getIsSingleYsdPush
())
&&
HouseConfigConstants
.
IS_SINGLE_NO
.
equals
(
excel
.
getIsSingleYsdPush
()))
{
info
.
setIsSingleYsdPush
(
CommonConstants
.
ZERO_STRING
);
if
(
Common
.
isNotNull
(
excel
.
getIsSingleYsdPush
()))
{
if
(
HouseConfigConstants
.
IS_SINGLE_NO
.
equals
(
excel
.
getIsSingleYsdPush
()))
{
info
.
setIsSingleYsdPush
(
CommonConstants
.
ZERO_STRING
);
}
else
if
(
HouseConfigConstants
.
IS_SINGLE_YES
.
equals
(
excel
.
getIsSingleYsdPush
()))
{
info
.
setIsSingleYsdPush
(
CommonConstants
.
ONE_STRING
);
}
}
}
}
...
...
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