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
60bd2ee5
Commit
60bd2ee5
authored
Jul 12, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
核查列表添加
parent
09584acf
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1253 additions
and
1247 deletions
+1253
-1247
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeDeptStatEntity.java
...hx/module/perform/model/PerformPerposeDeptStatEntity.java
+58
-55
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeDeptStatQuery.java
...xhx/module/perform/model/PerformPerposeDeptStatQuery.java
+1189
-1189
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeStaffStatEntity.java
...x/module/perform/model/PerformPerposeStaffStatEntity.java
+6
-3
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeDeptStatEntity.java
View file @
60bd2ee5
package
com.mortals.xhx.module.perform.model
;
package
com.mortals.xhx.module.perform.model
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
cn.hutool.core.date.DateUtil
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.perform.model.vo.PerformPerposeDeptStatVo
;
import
com.mortals.xhx.module.perform.model.vo.PerformPerposeDeptStatVo
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
* 部门目标统计实体对象
* 部门目标统计实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2023-07-12
* @date 2023-07-12
*/
*/
@Data
@Data
public
class
PerformPerposeDeptStatEntity
extends
PerformPerposeDeptStatVo
{
public
class
PerformPerposeDeptStatEntity
extends
PerformPerposeDeptStatVo
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
* 部门id号
* 部门id号
*/
*/
private
Long
deptId
;
private
Long
deptId
;
/**
/**
* 部门名称
* 部门名称
*/
*/
private
String
deptName
;
private
String
deptName
;
/**
/**
* 旷工率
* 旷工率
*/
*/
private
BigDecimal
absentRate
;
private
BigDecimal
absentRate
;
/**
/**
* 缺卡率
* 缺卡率
*/
*/
private
BigDecimal
absenceRate
;
private
BigDecimal
absenceRate
;
/**
/**
* 迟到率
* 迟到率
*/
*/
private
BigDecimal
lateRate
;
private
BigDecimal
lateRate
;
/**
/**
* 早退率
* 早退率
*/
*/
private
BigDecimal
earlyRate
;
private
BigDecimal
earlyRate
;
/**
/**
* 请假率
* 请假率
*/
*/
private
BigDecimal
leaveRate
;
private
BigDecimal
leaveRate
;
/**
/**
* 离岗率
* 离岗率
*/
*/
private
BigDecimal
turnoverRate
;
private
BigDecimal
turnoverRate
;
/**
/**
* 睡觉率
* 睡觉率
*/
*/
private
BigDecimal
sleepRate
;
private
BigDecimal
sleepRate
;
/**
/**
* 玩手机率
* 玩手机率
*/
*/
private
BigDecimal
playPhoneRate
;
private
BigDecimal
playPhoneRate
;
/**
/**
* 办件超期率
* 办件超期率
*/
*/
private
BigDecimal
expireWorkRate
;
private
BigDecimal
expireWorkRate
;
/**
/**
* 差评率
* 差评率
*/
*/
private
BigDecimal
negaReviewRate
;
private
BigDecimal
negaReviewRate
;
/**
/**
* 备注
* 备注
*/
*/
private
String
remark
;
private
String
remark
;
/**
/**
* 年
* 年
*/
*/
private
Integer
year
;
private
Integer
year
;
/**
/**
* 月
* 月
*/
*/
private
Integer
month
;
private
Integer
month
;
/**
/**
* 日
* 日
*/
*/
private
Integer
day
;
private
Integer
day
;
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
}
}
@Override
@Override
public
boolean
equals
(
Object
obj
)
{
public
boolean
equals
(
Object
obj
)
{
...
@@ -91,7 +94,7 @@ public class PerformPerposeDeptStatEntity extends PerformPerposeDeptStatVo {
...
@@ -91,7 +94,7 @@ public class PerformPerposeDeptStatEntity extends PerformPerposeDeptStatVo {
if
(
obj
instanceof
PerformPerposeDeptStatEntity
)
{
if
(
obj
instanceof
PerformPerposeDeptStatEntity
)
{
PerformPerposeDeptStatEntity
tmp
=
(
PerformPerposeDeptStatEntity
)
obj
;
PerformPerposeDeptStatEntity
tmp
=
(
PerformPerposeDeptStatEntity
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
return
true
;
}
}
}
}
return
false
;
return
false
;
...
@@ -99,36 +102,36 @@ public class PerformPerposeDeptStatEntity extends PerformPerposeDeptStatVo {
...
@@ -99,36 +102,36 @@ public class PerformPerposeDeptStatEntity extends PerformPerposeDeptStatVo {
public
void
initAttrValue
(){
public
void
initAttrValue
(){
this
.
deptId
=
0L
;
this
.
deptId
=
0L
;
this
.
deptName
=
""
;
this
.
deptName
=
""
;
this
.
absentRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
absentRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
absenceRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
absenceRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
lateRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
lateRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
earlyRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
earlyRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
leaveRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
leaveRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
turnoverRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
turnoverRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
sleepRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
sleepRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
playPhoneRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
playPhoneRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
expireWorkRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
expireWorkRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
negaReviewRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
negaReviewRate
=
BigDecimal
.
valueOf
(
0.00
);
this
.
remark
=
""
;
this
.
remark
=
""
;
this
.
year
=
-
1
;
this
.
year
=
DateUtil
.
year
(
new
Date
())
;
this
.
month
=
-
1
;
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
day
=
-
1
;
this
.
day
=
DateUtil
.
dayOfMonth
(
new
Date
())
;
}
}
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeDeptStatQuery.java
View file @
60bd2ee5
This diff is collapsed.
Click to expand it.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/perform/model/PerformPerposeStaffStatEntity.java
View file @
60bd2ee5
package
com.mortals.xhx.module.perform.model
;
package
com.mortals.xhx.module.perform.model
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
cn.hutool.core.date.DateUtil
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
...
@@ -131,10 +134,10 @@ public class PerformPerposeStaffStatEntity extends PerformPerposeStaffStatVo {
...
@@ -131,10 +134,10 @@ public class PerformPerposeStaffStatEntity extends PerformPerposeStaffStatVo {
this
.
remark
=
""
;
this
.
remark
=
""
;
this
.
year
=
-
1
;
this
.
year
=
DateUtil
.
year
(
new
Date
())
;
this
.
month
=
-
1
;
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
day
=
-
1
;
this
.
day
=
DateUtil
.
dayOfMonth
(
new
Date
())
;
}
}
}
}
\ No newline at end of file
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