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
c7f8e1dc
Commit
c7f8e1dc
authored
May 13, 2024
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
节假日配置表及社保医疗截止配置表
parent
ece0debc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
8 deletions
+11
-8
FailReasonConfig.java
...fu/cloud/plus/v1/yifu/social/entity/FailReasonConfig.java
+1
-1
FailReasonConfigServiceImpl.java
...yifu/social/service/impl/FailReasonConfigServiceImpl.java
+1
-1
FailReasonConfigMapper.xml
...-biz/src/main/resources/mapper/FailReasonConfigMapper.xml
+6
-5
TDispatchInfoMapper.xml
...ial-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
+3
-1
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/entity/FailReasonConfig.java
View file @
c7f8e1dc
...
@@ -48,7 +48,7 @@ public class FailReasonConfig extends BaseEntity {
...
@@ -48,7 +48,7 @@ public class FailReasonConfig extends BaseEntity {
@Length
(
max
=
20
,
message
=
"关键字不能超过20个字符"
)
@Length
(
max
=
20
,
message
=
"关键字不能超过20个字符"
)
@ExcelProperty
(
"关键字"
)
@ExcelProperty
(
"关键字"
)
@Schema
(
description
=
"关键字"
)
@Schema
(
description
=
"关键字"
)
private
String
key
;
private
String
key
s
;
/**
/**
* 精简原因
* 精简原因
*/
*/
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/FailReasonConfigServiceImpl.java
View file @
c7f8e1dc
...
@@ -43,7 +43,7 @@ public class FailReasonConfigServiceImpl extends ServiceImpl<FailReasonConfigMap
...
@@ -43,7 +43,7 @@ public class FailReasonConfigServiceImpl extends ServiceImpl<FailReasonConfigMap
Map
<
String
,
FailReasonConfig
>
map
=
new
HashMap
<>();
Map
<
String
,
FailReasonConfig
>
map
=
new
HashMap
<>();
List
<
FailReasonConfig
>
list
=
baseMapper
.
getFailReasonConfigList
();
List
<
FailReasonConfig
>
list
=
baseMapper
.
getFailReasonConfigList
();
for
(
FailReasonConfig
config
:
list
)
{
for
(
FailReasonConfig
config
:
list
)
{
map
.
put
(
config
.
getKey
(),
config
);
map
.
put
(
config
.
getKey
s
(),
config
);
}
}
return
map
;
return
map
;
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/FailReasonConfigMapper.xml
View file @
c7f8e1dc
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
<resultMap
id=
"failReasonConfigMap"
type=
"com.yifu.cloud.plus.v1.yifu.social.entity.FailReasonConfig"
>
<resultMap
id=
"failReasonConfigMap"
type=
"com.yifu.cloud.plus.v1.yifu.social.entity.FailReasonConfig"
>
<id
property=
"id"
column=
"ID"
/>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"reason"
column=
"REASON"
/>
<result
property=
"reason"
column=
"REASON"
/>
<result
property=
"key
"
column=
"KEY
"
/>
<result
property=
"key
s"
column=
"KEYS
"
/>
<result
property=
"simpleReason"
column=
"SIMPLE_REASON"
/>
<result
property=
"simpleReason"
column=
"SIMPLE_REASON"
/>
<result
property=
"replay"
column=
"REPLAY"
/>
<result
property=
"replay"
column=
"REPLAY"
/>
<result
property=
"status"
column=
"STATUS"
/>
<result
property=
"status"
column=
"STATUS"
/>
...
@@ -17,12 +17,13 @@
...
@@ -17,12 +17,13 @@
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.ID,
a.ID,
a.REASON,
a.REASON,
a.
KEY
,
a.
`KEYS`
,
a.SIMPLE_REASON,
a.SIMPLE_REASON,
a.REPLAY,
a.REPLAY,
a.
STATUS
,
a.
`STATUS`
,
a.CREATE_TIME,
a.CREATE_TIME,
a.CREATE_NAME,
a.CREATE_NAME,
a.CREATE_BY,
a.UPDATE_TIME,
a.UPDATE_TIME,
a.UPDATE_BY
a.UPDATE_BY
</sql>
</sql>
...
@@ -31,8 +32,8 @@
...
@@ -31,8 +32,8 @@
<if
test=
"failReasonConfig.reason != null and failReasonConfig.reason.trim() != ''"
>
<if
test=
"failReasonConfig.reason != null and failReasonConfig.reason.trim() != ''"
>
AND a.REASON LIKE concat('%',#{failReasonConfig.reason},'%')
AND a.REASON LIKE concat('%',#{failReasonConfig.reason},'%')
</if>
</if>
<if
test=
"failReasonConfig.key
!= null and failReasonConfig.key
.trim() != ''"
>
<if
test=
"failReasonConfig.key
s != null and failReasonConfig.keys
.trim() != ''"
>
AND a.KEY
= #{failReasonConfig.key
}
AND a.KEY
S = #{failReasonConfig.keys
}
</if>
</if>
<if
test=
"failReasonConfig.simpleReason != null and failReasonConfig.simpleReason.trim() != ''"
>
<if
test=
"failReasonConfig.simpleReason != null and failReasonConfig.simpleReason.trim() != ''"
>
AND a.SIMPLE_REASON = #{failReasonConfig.simpleReason}
AND a.SIMPLE_REASON = #{failReasonConfig.simpleReason}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
View file @
c7f8e1dc
...
@@ -968,7 +968,9 @@
...
@@ -968,7 +968,9 @@
a.MAJOR,
a.MAJOR,
a.FIRST_PAY_TIME,
a.FIRST_PAY_TIME,
a.GRADUATION_TIME,
a.GRADUATION_TIME,
a.AUTO_FLAG
case when a.AUTO_FLAG = 0 then "是"
when a.AUTO_FLAG = 1 then "否"
else "无" end as "AUTO_FLAG"
from t_dispatch_info a
from t_dispatch_info a
left join t_dispatch_social_fund_info h on a.id = h.REDUCE_SOCIAL_FUND_ID
left join t_dispatch_social_fund_info h on a.id = h.REDUCE_SOCIAL_FUND_ID
...
...
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