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
19d16f3a
Commit
19d16f3a
authored
Apr 03, 2023
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.5.3' into MVP1.5.3
parents
2569d434
0e83765e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
8 deletions
+32
-8
TEmployeeContractInfoMapper.xml
...src/main/resources/mapper/TEmployeeContractInfoMapper.xml
+6
-6
ekpSalaryConfig.properties
...-common-ekp/src/main/resources/ekpSalaryConfig.properties
+2
-2
FundHandleExportVo.java
...yifu/cloud/plus/v1/yifu/social/vo/FundHandleExportVo.java
+24
-0
No files found.
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TEmployeeContractInfoMapper.xml
View file @
19d16f3a
...
...
@@ -563,12 +563,12 @@
if(a.IN_USE = 0,'可用','不可用') IN_USE,
if(a.IS_FILE = 0,'有附件','无附件') FILES,
if(a.IS_FILE = 0,'已归档','未归档') IS_FILE,
a.
CONTRACT_NO,
a.
POST,
CASE WHEN
a.WORKING_HOURS
=1 THEN "标准工时"
WHEN
a.WORKING_HOURS
=2 THEN "综合工时"
WHEN
a.WORKING_HOURS
=3 THEN "不定时工时制"
ELSE
a.WORKING_HOURS
END as "WORKING_HOURS",
max(a.CONTRACT_NO)
CONTRACT_NO,
max(a.POST)
POST,
CASE WHEN
max(a.WORKING_HOURS)
=1 THEN "标准工时"
WHEN
max(a.WORKING_HOURS)
=2 THEN "综合工时"
WHEN
max(a.WORKING_HOURS)
=3 THEN "不定时工时制"
ELSE
max(a.WORKING_HOURS)
END as "WORKING_HOURS",
a.CREATE_NAME,
CASE WHEN a.type=0 THEN "派增-社保派单"
WHEN a.type =1 THEN "派增-无社保新签"
...
...
yifu-common/yifu-common-ekp/src/main/resources/ekpSalaryConfig.properties
View file @
19d16f3a
ekp.url
=
http://192.168.0.228:8080/api/sys-modeling/appModelRestService/addModel
#
ekp.url=http://36.7.147.19:28080/api/sys-modeling/appModelRestService/addModel
#
ekp.url=http://192.168.0.228:8080/api/sys-modeling/appModelRestService/addModel
ekp.url
=
http://36.7.147.19:28080/api/sys-modeling/appModelRestService/addModel
ekp.fdModelId
=
181d7633ff8bc797276d0d3a54e80ad6
ekp.fdFlowId
=
182b40249c1bc940d7226b941c7a4183
ekp.docStatus
=
20
...
...
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/FundHandleExportVo.java
View file @
19d16f3a
...
...
@@ -4,12 +4,15 @@ import com.alibaba.excel.annotation.ExcelProperty;
import
com.alibaba.excel.annotation.format.DateTimeFormat
;
import
com.alibaba.excel.annotation.write.style.HeadFontStyle
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttributeConstants
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
import
java.util.Date
;
/**
* @Author fxj
...
...
@@ -171,6 +174,27 @@ public class FundHandleExportVo implements Serializable {
@ExcelProperty
(
"委托备注"
)
private
String
fundTrustRemark
;
/**
* 离职日期
*/
@DateTimeFormat
(
"yyyy-MM-dd"
)
@ExcelAttribute
(
name
=
"离职日期"
,
isDate
=
true
)
@Schema
(
description
=
"离职日期"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"离职日期"
)
private
Date
leaveDate
;
/**
* 离职原因
*/
@Length
(
max
=
32
,
message
=
"离职原因 不能超过32个字符"
)
@ExcelAttribute
(
name
=
"离职原因"
,
maxLength
=
32
,
isNotEmpty
=
true
,
isDataId
=
true
,
dataType
=
ExcelAttributeConstants
.
REDUCE_SOCIAL_REASON
)
@Schema
(
description
=
"离职原因"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"离职原因"
)
private
String
reduceReason
;
/*******************************导出字段结束*************************************************/
}
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