Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
attendance-performance-platform
Commits
a062c364
Commit
a062c364
authored
Jul 18, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改导出业务
parent
b4bc89c4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
6 deletions
+26
-6
attendance-performance-manager-ui/admin/src/views/attendance/leave/record/list.vue
...nager-ui/admin/src/views/attendance/leave/record/list.vue
+5
-3
attendance-performance-manager-ui/admin/src/views/attendance/record/list.vue
...nce-manager-ui/admin/src/views/attendance/record/list.vue
+9
-2
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffEntity.java
.../java/com/mortals/xhx/module/staff/model/StaffEntity.java
+12
-1
No files found.
attendance-performance-manager-ui/admin/src/views/attendance/leave/record/list.vue
View file @
a062c364
...
@@ -120,13 +120,15 @@ export default {
...
@@ -120,13 +120,15 @@ export default {
// {label: "审批负责人Id", prop: "approverId", formatter: this.formatter},
// {label: "审批负责人Id", prop: "approverId", formatter: this.formatter},
/* {label: "处理状态", prop: "processStatus", formatter: this.formatter},*/
{
label
:
"
状态
"
,
prop
:
"
auditResult
"
,
formatter
:
this
.
formatter
},
{
label
:
"
审批负责人
"
,
prop
:
"
approver
"
},
{
label
:
"
审批负责人
"
,
prop
:
"
approver
"
},
{
label
:
"
处理状态
"
,
prop
:
"
processStatus
"
,
formatter
:
this
.
formatter
},
{
label
:
"
创建用户
"
,
prop
:
"
createUserId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
审核状态
"
,
prop
:
"
auditResult
"
,
formatter
:
this
.
formatter
},
{
label
:
"
创建时间
"
,
prop
:
"
createTime
"
,
formatter
:
this
.
formatterDate
},
{
label
:
"
创建用户
"
,
prop
:
"
createUserId
"
,
formatter
:
this
.
formatter
},
{
{
label
:
"
操作
"
,
label
:
"
操作
"
,
width
:
240
,
width
:
240
,
...
...
attendance-performance-manager-ui/admin/src/views/attendance/record/list.vue
View file @
a062c364
...
@@ -413,13 +413,20 @@ export default {
...
@@ -413,13 +413,20 @@ export default {
name
:
"
staffName
"
,
name
:
"
staffName
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
员工姓名
"
,
label
:
"
员工姓名
"
,
fuzzy
:
false
,
fuzzy
:
true
,
},
{
name
:
"
workNum
"
,
type
:
"
text
"
,
label
:
"
员工工号
"
,
fuzzy
:
true
,
},
},
{
{
name
:
"
phone
"
,
name
:
"
phone
"
,
type
:
"
text
"
,
type
:
"
text
"
,
label
:
"
手机号
"
,
label
:
"
手机号
"
,
fuzzy
:
fals
e
,
fuzzy
:
tru
e
,
},
},
{
{
name
:
"
deptId
"
,
name
:
"
deptId
"
,
...
...
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffEntity.java
View file @
a062c364
...
@@ -12,7 +12,7 @@ import lombok.Data;
...
@@ -12,7 +12,7 @@ import lombok.Data;
* 员工基本信息实体对象
* 员工基本信息实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2023-07-
07
* @date 2023-07-
18
*/
*/
@Data
@Data
public
class
StaffEntity
extends
StaffVo
{
public
class
StaffEntity
extends
StaffVo
{
...
@@ -21,10 +21,12 @@ public class StaffEntity extends StaffVo {
...
@@ -21,10 +21,12 @@ public class StaffEntity extends StaffVo {
/**
/**
* 员工姓名
* 员工姓名
*/
*/
@Excel
(
name
=
"员工姓名"
)
private
String
name
;
private
String
name
;
/**
/**
* 性别(1.男,2.女)
* 性别(1.男,2.女)
*/
*/
@Excel
(
name
=
"性别"
,
readConverterExp
=
"1=男,2.女"
)
private
Integer
gender
;
private
Integer
gender
;
/**
/**
* 出生日期
* 出生日期
...
@@ -37,14 +39,17 @@ public class StaffEntity extends StaffVo {
...
@@ -37,14 +39,17 @@ public class StaffEntity extends StaffVo {
/**
/**
* 联系电话
* 联系电话
*/
*/
@Excel
(
name
=
"联系电话"
)
private
String
phoneNumber
;
private
String
phoneNumber
;
/**
/**
* 身份证号码
* 身份证号码
*/
*/
@Excel
(
name
=
"身份证号码"
)
private
String
idCard
;
private
String
idCard
;
/**
/**
* 工号
* 工号
*/
*/
@Excel
(
name
=
"工号"
)
private
String
workNum
;
private
String
workNum
;
/**
/**
* 政治面貌 (1.中共党员,2.中共预备党员,3.共青团员,4.群众,5.其它)
* 政治面貌 (1.中共党员,2.中共预备党员,3.共青团员,4.群众,5.其它)
...
@@ -57,6 +62,7 @@ public class StaffEntity extends StaffVo {
...
@@ -57,6 +62,7 @@ public class StaffEntity extends StaffVo {
/**
/**
* 所属部门名称
* 所属部门名称
*/
*/
@Excel
(
name
=
"所属部门名称"
)
private
String
deptName
;
private
String
deptName
;
/**
/**
* 职位ID
* 职位ID
...
@@ -65,14 +71,17 @@ public class StaffEntity extends StaffVo {
...
@@ -65,14 +71,17 @@ public class StaffEntity extends StaffVo {
/**
/**
* 职位名称
* 职位名称
*/
*/
@Excel
(
name
=
"职位名称"
)
private
String
positionName
;
private
String
positionName
;
/**
/**
* 员工类型(1.全职,2.兼职,3.实习)
* 员工类型(1.全职,2.兼职,3.实习)
*/
*/
@Excel
(
name
=
"员工类型"
)
private
Integer
staffType
;
private
Integer
staffType
;
/**
/**
* 员工状态(1.正式,2.试用,3.离职)
* 员工状态(1.正式,2.试用,3.离职)
*/
*/
@Excel
(
name
=
"员工状态"
,
readConverterExp
=
"1=正式,2=试用,3=离职"
)
private
Integer
status
;
private
Integer
status
;
/**
/**
* 员工来源(1.外部,2.内部)
* 员工来源(1.外部,2.内部)
...
@@ -85,6 +94,7 @@ public class StaffEntity extends StaffVo {
...
@@ -85,6 +94,7 @@ public class StaffEntity extends StaffVo {
/**
/**
* 入职时间
* 入职时间
*/
*/
@Excel
(
name
=
"入职时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
private
Date
entryDate
;
private
Date
entryDate
;
/**
/**
* 转正时间
* 转正时间
...
@@ -113,6 +123,7 @@ public class StaffEntity extends StaffVo {
...
@@ -113,6 +123,7 @@ public class StaffEntity extends StaffVo {
/**
/**
* 绩效分数
* 绩效分数
*/
*/
@Excel
(
name
=
"绩效分数"
)
private
BigDecimal
score
;
private
BigDecimal
score
;
/**
/**
* 员工登录名
* 员工登录名
...
...
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