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
ad46a442
Commit
ad46a442
authored
Jul 13, 2023
by
廖旭伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
2f9ad857
c90df895
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
3432 additions
and
3395 deletions
+3432
-3395
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/web/ApiWebPerformController.java
...va/com/mortals/xhx/busiz/web/ApiWebPerformController.java
+3
-15
attendance-performance-manager/src/main/java/com/mortals/xhx/module/feedback/web/FeedbackController.java
...m/mortals/xhx/module/feedback/web/FeedbackController.java
+5
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformStatEntity.java
...ortals/xhx/module/staff/model/StaffPerformStatEntity.java
+92
-85
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformStatQuery.java
...mortals/xhx/module/staff/model/StaffPerformStatQuery.java
+2130
-2130
attendance-performance-manager/src/main/resources/sqlmap/module/staff/StaffPerformStatMapper.xml
.../resources/sqlmap/module/staff/StaffPerformStatMapper.xml
+1165
-1165
db/add.sql
db/add.sql
+37
-0
doc/考勤绩效管理系统.docx
doc/考勤绩效管理系统.docx
+0
-0
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/web/ApiWebPerformController.java
View file @
ad46a442
...
...
@@ -63,8 +63,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部考勤新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
@@ -90,8 +88,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部评价新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
@@ -117,8 +113,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部投诉新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
@@ -144,8 +138,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部办件新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
@@ -171,8 +163,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部效能新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
@@ -198,8 +188,6 @@ public class ApiWebPerformController extends AbstractBaseControll
String
busiDesc
=
"外部其它绩效新增"
;
Rest
rest
=
Rest
.
ok
(
busiDesc
+
"成功!"
);
StringBuilder
message
=
new
StringBuilder
();
message
.
append
(
String
.
format
(
"【外部请求】类型【%s】 内容:%s"
,
PerformTypeEnum
.
getByValue
(
req
.
getPerformType
()).
getDesc
(),
JSONObject
.
toJSONString
(
req
)));
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getPhone
()))
throw
new
AppException
(
"手机号码不能为空!"
);
if
(
ObjectUtils
.
isEmpty
(
req
.
getRuleCode
()))
throw
new
AppException
(
"绩效规则编码不能为空!"
);
...
...
attendance-performance-manager/src/main/java/com/mortals/xhx/module/feedback/web/FeedbackController.java
View file @
ad46a442
...
...
@@ -209,4 +209,9 @@ public class FeedbackController extends BaseCRUDJsonBodyMappingController<Feedba
return
ret
;
}
@Override
protected
int
infoAfter
(
Long
id
,
Map
<
String
,
Object
>
model
,
FeedbackEntity
entity
,
Context
context
)
throws
AppException
{
return
super
.
infoAfter
(
id
,
model
,
entity
,
context
);
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformStatEntity.java
View file @
ad46a442
package
com.mortals.xhx.module.staff.model
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.ArrayList
;
import
cn.hutool.core.date.DateUtil
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.staff.model.vo.StaffPerformStatVo
;
import
lombok.Data
;
/**
* 员工绩效统计实体对象
*
* @author zxfei
* @date 2023-07-11
*/
* 员工绩效统计实体对象
*
* @author zxfei
* @date 2023-07-13
*/
@Data
public
class
StaffPerformStatEntity
extends
StaffPerformStatVo
{
private
static
final
long
serialVersionUID
=
1L
;
...
...
@@ -20,28 +25,26 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
/**
* 部门id号
*/
private
Long
dept
Id
;
private
Long
staff
Id
;
/**
* 部门名称
*/
private
String
dept
Name
;
private
String
staff
Name
;
/**
* 员工绩效总分数
*/
@Excel
(
name
=
"员工绩效总分数"
)
private
BigDecimal
totalScore
;
/**
* 备注
*/
private
String
remark
;
/**
* 年
* 员工绩效加分总分数汇总
*/
private
Integer
year
;
@Excel
(
name
=
"员工绩效加分总分数汇总"
)
private
BigDecimal
totalAddScore
;
/**
* 月
* 员工绩效减分总分数汇总
*/
private
Integer
month
;
@Excel
(
name
=
"员工绩效减分总分数汇总"
)
private
BigDecimal
totalSubScore
;
/**
* 考勤绩效指标增加分数
*/
...
...
@@ -58,6 +61,14 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
* 评价绩效指标扣减分数
*/
private
BigDecimal
assessScoreSub
;
/**
* 投诉绩效指标增加分数
*/
private
BigDecimal
complainScoreAdd
;
/**
* 投诉绩效指标扣减分数
*/
private
BigDecimal
complainScoreSub
;
/**
* 办件绩效指标增加分数
*/
...
...
@@ -83,31 +94,27 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
*/
private
BigDecimal
otherScoreSub
;
/**
* 日
*/
private
Integer
day
;
/**
* 员工绩效加分总分数汇总
* 备注
*/
@Excel
(
name
=
"员工绩效加分总分数汇总"
)
private
BigDecimal
totalAddScore
;
private
String
remark
;
/**
* 员工绩效减分总分数汇总
* 年
*/
@Excel
(
name
=
"员工绩效减分总分数汇总"
)
private
BigDecimal
totalSubScore
;
private
Integer
year
;
/**
* 投诉绩效指标增加分数
* 月
*/
private
BigDecimal
complainScoreAdd
;
private
Integer
month
;
/**
* 投诉绩效指标扣减分数
* 日
*/
private
BigDecimal
complainScoreSub
;
private
Integer
day
;
@Override
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
obj
==
null
)
return
false
;
...
...
@@ -120,19 +127,17 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
return
false
;
}
public
void
initAttrValue
(){
public
void
initAttrValue
()
{
this
.
dept
Id
=
0L
;
this
.
staff
Id
=
0L
;
this
.
dept
Name
=
""
;
this
.
staff
Name
=
""
;
this
.
totalScore
=
new
BigDecimal
(
0
);
this
.
remark
=
""
;
this
.
year
=
-
1
;
this
.
totalAddScore
=
new
BigDecimal
(
0
);
this
.
month
=
-
1
;
this
.
totalSubScore
=
new
BigDecimal
(
0
)
;
this
.
attendScoreAdd
=
new
BigDecimal
(
0
);
...
...
@@ -142,6 +147,10 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
this
.
assessScoreSub
=
new
BigDecimal
(
0
);
this
.
complainScoreAdd
=
new
BigDecimal
(
0
);
this
.
complainScoreSub
=
new
BigDecimal
(
0
);
this
.
workScoreAdd
=
new
BigDecimal
(
0
);
this
.
workScoreSub
=
new
BigDecimal
(
0
);
...
...
@@ -154,14 +163,12 @@ public class StaffPerformStatEntity extends StaffPerformStatVo {
this
.
otherScoreSub
=
new
BigDecimal
(
0
);
this
.
day
=
-
1
;
this
.
totalAddScore
=
new
BigDecimal
(
0
);
this
.
remark
=
""
;
this
.
totalSubScore
=
new
BigDecimal
(
0
);
this
.
year
=
DateUtil
.
year
(
new
Date
()
);
this
.
complainScoreAdd
=
new
BigDecimal
(
0
)
;
this
.
month
=
DateUtil
.
month
(
new
Date
())
+
1
;
this
.
complainScoreSub
=
new
BigDecimal
(
0
);
this
.
day
=
DateUtil
.
dayOfMonth
(
new
Date
()
);
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformStatQuery.java
View file @
ad46a442
...
...
@@ -4,11 +4,11 @@ import java.math.BigDecimal;
import
java.util.List
;
import
com.mortals.xhx.module.staff.model.StaffPerformStatEntity
;
/**
* 员工绩效统计查询对象
*
* @author zxfei
* @date 2023-07-11
*/
* 员工绩效统计查询对象
*
* @author zxfei
* @date 2023-07-13
*/
public
class
StaffPerformStatQuery
extends
StaffPerformStatEntity
{
/** 开始 主键ID,主键,自增长 */
private
Long
idStart
;
...
...
@@ -26,25 +26,25 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
private
List
<
Long
>
idNotList
;
/** 开始 部门id号 */
private
Long
dept
IdStart
;
private
Long
staff
IdStart
;
/** 结束 部门id号 */
private
Long
dept
IdEnd
;
private
Long
staff
IdEnd
;
/** 增加 部门id号 */
private
Long
dept
IdIncrement
;
private
Long
staff
IdIncrement
;
/** 部门id号列表 */
private
List
<
Long
>
dept
IdList
;
private
List
<
Long
>
staff
IdList
;
/** 部门id号排除列表 */
private
List
<
Long
>
dept
IdNotList
;
private
List
<
Long
>
staff
IdNotList
;
/** 部门名称 */
private
List
<
String
>
dept
NameList
;
private
List
<
String
>
staff
NameList
;
/** 部门名称排除列表 */
private
List
<
String
>
dept
NameNotList
;
private
List
<
String
>
staff
NameNotList
;
/** 开始 员工绩效总分数 */
private
BigDecimal
totalScoreStart
;
...
...
@@ -60,82 +60,35 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/** 员工绩效总分数排除列表 */
private
List
<
BigDecimal
>
totalScoreNotList
;
/** 备注 */
private
List
<
String
>
remarkList
;
/** 备注排除列表 */
private
List
<
String
>
remarkNotList
;
/** 开始 年 */
private
Integer
yearStart
;
/** 结束 年 */
private
Integer
yearEnd
;
/** 增加 年 */
private
Integer
yearIncrement
;
/** 年列表 */
private
List
<
Integer
>
yearList
;
/** 年排除列表 */
private
List
<
Integer
>
yearNotList
;
/** 开始 月 */
private
Integer
monthStart
;
/** 结束 月 */
private
Integer
monthEnd
;
/** 增加 月 */
private
Integer
monthIncrement
;
/** 月列表 */
private
List
<
Integer
>
monthList
;
/** 月排除列表 */
private
List
<
Integer
>
monthNotList
;
/** 开始 创建时间 */
private
String
createTimeStart
;
/** 结束 创建时间 */
private
String
createTimeEnd
;
/** 开始 创建人id */
private
Long
createUserIdStart
;
/** 结束 创建人id */
private
Long
createUserIdEnd
;
/** 增加 创建人id */
private
Long
createUserIdIncrement
;
/** 开始 员工绩效加分总分数汇总 */
private
BigDecimal
totalAddScoreStart
;
/**
创建人id列表
*/
private
List
<
Long
>
createUserIdList
;
/**
结束 员工绩效加分总分数汇总
*/
private
BigDecimal
totalAddScoreEnd
;
/**
创建人id排除列表
*/
private
List
<
Long
>
createUserIdNotLis
t
;
/**
增加 员工绩效加分总分数汇总
*/
private
BigDecimal
totalAddScoreIncremen
t
;
/**
开始 更新时间
*/
private
String
updateTimeStar
t
;
/**
员工绩效加分总分数汇总列表
*/
private
List
<
BigDecimal
>
totalAddScoreLis
t
;
/**
结束 更新时间
*/
private
String
updateTimeEnd
;
/**
员工绩效加分总分数汇总排除列表
*/
private
List
<
BigDecimal
>
totalAddScoreNotList
;
/** 开始
更新人id
*/
private
Long
updateUserId
Start
;
/** 开始
员工绩效减分总分数汇总
*/
private
BigDecimal
totalSubScore
Start
;
/** 结束
更新人id
*/
private
Long
updateUserId
End
;
/** 结束
员工绩效减分总分数汇总
*/
private
BigDecimal
totalSubScore
End
;
/** 增加
更新人id
*/
private
Long
updateUserId
Increment
;
/** 增加
员工绩效减分总分数汇总
*/
private
BigDecimal
totalSubScore
Increment
;
/**
更新人id
列表 */
private
List
<
Long
>
updateUserId
List
;
/**
员工绩效减分总分数汇总
列表 */
private
List
<
BigDecimal
>
totalSubScore
List
;
/**
更新人id
排除列表 */
private
List
<
Long
>
updateUserId
NotList
;
/**
员工绩效减分总分数汇总
排除列表 */
private
List
<
BigDecimal
>
totalSubScore
NotList
;
/** 开始 考勤绩效指标增加分数 */
private
BigDecimal
attendScoreAddStart
;
...
...
@@ -197,6 +150,36 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/** 评价绩效指标扣减分数排除列表 */
private
List
<
BigDecimal
>
assessScoreSubNotList
;
/** 开始 投诉绩效指标增加分数 */
private
BigDecimal
complainScoreAddStart
;
/** 结束 投诉绩效指标增加分数 */
private
BigDecimal
complainScoreAddEnd
;
/** 增加 投诉绩效指标增加分数 */
private
BigDecimal
complainScoreAddIncrement
;
/** 投诉绩效指标增加分数列表 */
private
List
<
BigDecimal
>
complainScoreAddList
;
/** 投诉绩效指标增加分数排除列表 */
private
List
<
BigDecimal
>
complainScoreAddNotList
;
/** 开始 投诉绩效指标扣减分数 */
private
BigDecimal
complainScoreSubStart
;
/** 结束 投诉绩效指标扣减分数 */
private
BigDecimal
complainScoreSubEnd
;
/** 增加 投诉绩效指标扣减分数 */
private
BigDecimal
complainScoreSubIncrement
;
/** 投诉绩效指标扣减分数列表 */
private
List
<
BigDecimal
>
complainScoreSubList
;
/** 投诉绩效指标扣减分数排除列表 */
private
List
<
BigDecimal
>
complainScoreSubNotList
;
/** 开始 办件绩效指标增加分数 */
private
BigDecimal
workScoreAddStart
;
...
...
@@ -287,6 +270,41 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/** 其它绩效指标扣减分数排除列表 */
private
List
<
BigDecimal
>
otherScoreSubNotList
;
/** 备注 */
private
List
<
String
>
remarkList
;
/** 备注排除列表 */
private
List
<
String
>
remarkNotList
;
/** 开始 年 */
private
Integer
yearStart
;
/** 结束 年 */
private
Integer
yearEnd
;
/** 增加 年 */
private
Integer
yearIncrement
;
/** 年列表 */
private
List
<
Integer
>
yearList
;
/** 年排除列表 */
private
List
<
Integer
>
yearNotList
;
/** 开始 月 */
private
Integer
monthStart
;
/** 结束 月 */
private
Integer
monthEnd
;
/** 增加 月 */
private
Integer
monthIncrement
;
/** 月列表 */
private
List
<
Integer
>
monthList
;
/** 月排除列表 */
private
List
<
Integer
>
monthNotList
;
/** 开始 日 */
private
Integer
dayStart
;
...
...
@@ -302,65 +320,47 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/** 日排除列表 */
private
List
<
Integer
>
dayNotList
;
/** 开始 员工绩效加分总分数汇总 */
private
BigDecimal
totalAddScoreStart
;
/** 结束 员工绩效加分总分数汇总 */
private
BigDecimal
totalAddScoreEnd
;
/** 增加 员工绩效加分总分数汇总 */
private
BigDecimal
totalAddScoreIncrement
;
/** 员工绩效加分总分数汇总列表 */
private
List
<
BigDecimal
>
totalAddScoreList
;
/** 员工绩效加分总分数汇总排除列表 */
private
List
<
BigDecimal
>
totalAddScoreNotList
;
/** 开始 员工绩效减分总分数汇总 */
private
BigDecimal
totalSubScoreStart
;
/** 结束 员工绩效减分总分数汇总 */
private
BigDecimal
totalSubScoreEnd
;
/** 开始 创建时间 */
private
String
createTimeStart
;
/**
增加 员工绩效减分总分数汇总
*/
private
BigDecimal
totalSubScoreIncrement
;
/**
结束 创建时间
*/
private
String
createTimeEnd
;
/**
员工绩效减分总分数汇总列表
*/
private
L
ist
<
BigDecimal
>
totalSubScoreLis
t
;
/**
开始 创建人id
*/
private
L
ong
createUserIdStar
t
;
/**
员工绩效减分总分数汇总排除列表
*/
private
L
ist
<
BigDecimal
>
totalSubScoreNotList
;
/**
结束 创建人id
*/
private
L
ong
createUserIdEnd
;
/**
开始 投诉绩效指标增加分数
*/
private
BigDecimal
complainScoreAddStar
t
;
/**
增加 创建人id
*/
private
Long
createUserIdIncremen
t
;
/**
结束 投诉绩效指标增加分数
*/
private
BigDecimal
complainScoreAddEnd
;
/**
创建人id列表
*/
private
List
<
Long
>
createUserIdList
;
/**
增加 投诉绩效指标增加分数
*/
private
BigDecimal
complainScoreAddIncremen
t
;
/**
创建人id排除列表
*/
private
List
<
Long
>
createUserIdNotLis
t
;
/**
投诉绩效指标增加分数列表
*/
private
List
<
BigDecimal
>
complainScoreAddLis
t
;
/**
开始 更新时间
*/
private
String
updateTimeStar
t
;
/**
投诉绩效指标增加分数排除列表
*/
private
List
<
BigDecimal
>
complainScoreAddNotList
;
/**
结束 更新时间
*/
private
String
updateTimeEnd
;
/** 开始
投诉绩效指标扣减分数
*/
private
BigDecimal
complainScoreSub
Start
;
/** 开始
更新人id
*/
private
Long
updateUserId
Start
;
/** 结束
投诉绩效指标扣减分数
*/
private
BigDecimal
complainScoreSub
End
;
/** 结束
更新人id
*/
private
Long
updateUserId
End
;
/** 增加
投诉绩效指标扣减分数
*/
private
BigDecimal
complainScoreSub
Increment
;
/** 增加
更新人id
*/
private
Long
updateUserId
Increment
;
/**
投诉绩效指标扣减分数
列表 */
private
List
<
BigDecimal
>
complainScoreSub
List
;
/**
更新人id
列表 */
private
List
<
Long
>
updateUserId
List
;
/**
投诉绩效指标扣减分数
排除列表 */
private
List
<
BigDecimal
>
complainScoreSub
NotList
;
/**
更新人id
排除列表 */
private
List
<
Long
>
updateUserId
NotList
;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private
List
<
StaffPerformStatQuery
>
orConditionList
;
...
...
@@ -453,115 +453,115 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/**
* 获取 开始 部门id号
* @return dept
IdStart
* @return staff
IdStart
*/
public
Long
get
Dept
IdStart
(){
return
this
.
dept
IdStart
;
public
Long
get
Staff
IdStart
(){
return
this
.
staff
IdStart
;
}
/**
* 设置 开始 部门id号
* @param dept
IdStart
* @param staff
IdStart
*/
public
void
set
DeptIdStart
(
Long
dept
IdStart
){
this
.
deptIdStart
=
dept
IdStart
;
public
void
set
StaffIdStart
(
Long
staff
IdStart
){
this
.
staffIdStart
=
staff
IdStart
;
}
/**
* 获取 结束 部门id号
* @return $dept
IdEnd
* @return $staff
IdEnd
*/
public
Long
get
Dept
IdEnd
(){
return
this
.
dept
IdEnd
;
public
Long
get
Staff
IdEnd
(){
return
this
.
staff
IdEnd
;
}
/**
* 设置 结束 部门id号
* @param dept
IdEnd
* @param staff
IdEnd
*/
public
void
set
DeptIdEnd
(
Long
dept
IdEnd
){
this
.
deptIdEnd
=
dept
IdEnd
;
public
void
set
StaffIdEnd
(
Long
staff
IdEnd
){
this
.
staffIdEnd
=
staff
IdEnd
;
}
/**
* 获取 增加 部门id号
* @return dept
IdIncrement
* @return staff
IdIncrement
*/
public
Long
get
Dept
IdIncrement
(){
return
this
.
dept
IdIncrement
;
public
Long
get
Staff
IdIncrement
(){
return
this
.
staff
IdIncrement
;
}
/**
* 设置 增加 部门id号
* @param dept
IdIncrement
* @param staff
IdIncrement
*/
public
void
set
DeptIdIncrement
(
Long
dept
IdIncrement
){
this
.
deptIdIncrement
=
dept
IdIncrement
;
public
void
set
StaffIdIncrement
(
Long
staff
IdIncrement
){
this
.
staffIdIncrement
=
staff
IdIncrement
;
}
/**
* 获取 部门id号
* @return dept
IdList
* @return staff
IdList
*/
public
List
<
Long
>
get
Dept
IdList
(){
return
this
.
dept
IdList
;
public
List
<
Long
>
get
Staff
IdList
(){
return
this
.
staff
IdList
;
}
/**
* 设置 部门id号
* @param dept
IdList
* @param staff
IdList
*/
public
void
set
DeptIdList
(
List
<
Long
>
dept
IdList
){
this
.
deptIdList
=
dept
IdList
;
public
void
set
StaffIdList
(
List
<
Long
>
staff
IdList
){
this
.
staffIdList
=
staff
IdList
;
}
/**
* 获取 部门id号
* @return dept
IdNotList
* @return staff
IdNotList
*/
public
List
<
Long
>
get
Dept
IdNotList
(){
return
this
.
dept
IdNotList
;
public
List
<
Long
>
get
Staff
IdNotList
(){
return
this
.
staff
IdNotList
;
}
/**
* 设置 部门id号
* @param dept
IdNotList
* @param staff
IdNotList
*/
public
void
set
DeptIdNotList
(
List
<
Long
>
dept
IdNotList
){
this
.
deptIdNotList
=
dept
IdNotList
;
public
void
set
StaffIdNotList
(
List
<
Long
>
staff
IdNotList
){
this
.
staffIdNotList
=
staff
IdNotList
;
}
/**
* 获取 部门名称
* @return dept
NameList
* @return staff
NameList
*/
public
List
<
String
>
get
Dept
NameList
(){
return
this
.
dept
NameList
;
public
List
<
String
>
get
Staff
NameList
(){
return
this
.
staff
NameList
;
}
/**
* 设置 部门名称
* @param dept
NameList
* @param staff
NameList
*/
public
void
set
DeptNameList
(
List
<
String
>
dept
NameList
){
this
.
deptNameList
=
dept
NameList
;
public
void
set
StaffNameList
(
List
<
String
>
staff
NameList
){
this
.
staffNameList
=
staff
NameList
;
}
/**
* 获取 部门名称
* @return dept
NameNotList
* @return staff
NameNotList
*/
public
List
<
String
>
get
Dept
NameNotList
(){
return
this
.
dept
NameNotList
;
public
List
<
String
>
get
Staff
NameNotList
(){
return
this
.
staff
NameNotList
;
}
/**
* 设置 部门名称
* @param dept
NameNotList
* @param staff
NameNotList
*/
public
void
set
DeptNameNotList
(
List
<
String
>
dept
NameNotList
){
this
.
deptNameNotList
=
dept
NameNotList
;
public
void
set
StaffNameNotList
(
List
<
String
>
staff
NameNotList
){
this
.
staffNameNotList
=
staff
NameNotList
;
}
/**
...
...
@@ -646,422 +646,164 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/**
* 获取 备注
* @return remarkLis
t
* 获取 开始 员工绩效加分总分数汇总
* @return totalAddScoreStar
t
*/
public
List
<
String
>
getRemarkLis
t
(){
return
this
.
remarkLis
t
;
public
BigDecimal
getTotalAddScoreStar
t
(){
return
this
.
totalAddScoreStar
t
;
}
/**
* 设置 备注
* @param remarkLis
t
* 设置 开始 员工绩效加分总分数汇总
* @param totalAddScoreStar
t
*/
public
void
set
RemarkList
(
List
<
String
>
remarkLis
t
){
this
.
remarkList
=
remarkLis
t
;
public
void
set
TotalAddScoreStart
(
BigDecimal
totalAddScoreStar
t
){
this
.
totalAddScoreStart
=
totalAddScoreStar
t
;
}
/**
* 获取 备注
* @return remarkNotList
* 获取 结束 员工绩效加分总分数汇总
* @return $totalAddScoreEnd
*/
public
List
<
String
>
getRemarkNotList
(){
return
this
.
remarkNotList
;
public
BigDecimal
getTotalAddScoreEnd
(){
return
this
.
totalAddScoreEnd
;
}
/**
* 设置 备注
* @param remarkNotList
* 设置 结束 员工绩效加分总分数汇总
* @param totalAddScoreEnd
*/
public
void
setRemarkNotList
(
List
<
String
>
remarkNotList
){
this
.
remarkNotList
=
remarkNotList
;
}
/**
* 获取 开始 年
* @return yearStart
*/
public
Integer
getYearStart
(){
return
this
.
yearStart
;
}
/**
* 设置 开始 年
* @param yearStart
*/
public
void
setYearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
}
/**
* 获取 结束 年
* @return $yearEnd
*/
public
Integer
getYearEnd
(){
return
this
.
yearEnd
;
}
/**
* 设置 结束 年
* @param yearEnd
*/
public
void
setYearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
}
/**
* 获取 增加 年
* @return yearIncrement
*/
public
Integer
getYearIncrement
(){
return
this
.
yearIncrement
;
}
/**
* 设置 增加 年
* @param yearIncrement
*/
public
void
setYearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
}
/**
* 获取 年
* @return yearList
*/
public
List
<
Integer
>
getYearList
(){
return
this
.
yearList
;
}
/**
* 设置 年
* @param yearList
*/
public
void
setYearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
}
/**
* 获取 年
* @return yearNotList
*/
public
List
<
Integer
>
getYearNotList
(){
return
this
.
yearNotList
;
}
/**
* 设置 年
* @param yearNotList
*/
public
void
setYearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
}
/**
* 获取 开始 月
* @return monthStart
*/
public
Integer
getMonthStart
(){
return
this
.
monthStart
;
}
/**
* 设置 开始 月
* @param monthStart
*/
public
void
setMonthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
}
/**
* 获取 结束 月
* @return $monthEnd
*/
public
Integer
getMonthEnd
(){
return
this
.
monthEnd
;
}
/**
* 设置 结束 月
* @param monthEnd
*/
public
void
setMonthEnd
(
Integer
monthEnd
){
this
.
monthEnd
=
monthEnd
;
}
/**
* 获取 增加 月
* @return monthIncrement
*/
public
Integer
getMonthIncrement
(){
return
this
.
monthIncrement
;
}
/**
* 设置 增加 月
* @param monthIncrement
*/
public
void
setMonthIncrement
(
Integer
monthIncrement
){
this
.
monthIncrement
=
monthIncrement
;
}
/**
* 获取 月
* @return monthList
*/
public
List
<
Integer
>
getMonthList
(){
return
this
.
monthList
;
}
/**
* 设置 月
* @param monthList
*/
public
void
setMonthList
(
List
<
Integer
>
monthList
){
this
.
monthList
=
monthList
;
}
/**
* 获取 月
* @return monthNotList
*/
public
List
<
Integer
>
getMonthNotList
(){
return
this
.
monthNotList
;
}
/**
* 设置 月
* @param monthNotList
*/
public
void
setMonthNotList
(
List
<
Integer
>
monthNotList
){
this
.
monthNotList
=
monthNotList
;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
*/
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
}
/**
* 设置 开始 创建时间
* @param createTimeStart
*/
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
}
/**
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
}
/**
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 获取 开始 创建人id
* @return createUserIdStart
*/
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
}
/**
* 设置 开始 创建人id
* @param createUserIdStart
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
}
/**
* 获取 结束 创建人id
* @return $createUserIdEnd
*/
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
}
/**
* 设置 结束 创建人id
* @param createUserIdEnd
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
}
/**
* 获取 增加 创建人id
* @return createUserIdIncrement
*/
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
}
/**
* 设置 增加 创建人id
* @param createUserIdIncrement
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
/**
* 获取 创建人id
* @return createUserIdList
*/
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
}
/**
* 设置 创建人id
* @param createUserIdList
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
public
void
setTotalAddScoreEnd
(
BigDecimal
totalAddScoreEnd
){
this
.
totalAddScoreEnd
=
totalAddScoreEnd
;
}
/**
* 获取 创建人id
* @return createUserIdNotLis
t
* 获取 增加 员工绩效加分总分数汇总
* @return totalAddScoreIncremen
t
*/
public
List
<
Long
>
getCreateUserIdNotLis
t
(){
return
this
.
createUserIdNotLis
t
;
public
BigDecimal
getTotalAddScoreIncremen
t
(){
return
this
.
totalAddScoreIncremen
t
;
}
/**
* 设置 创建人id
* @param createUserIdNotLis
t
* 设置 增加 员工绩效加分总分数汇总
* @param totalAddScoreIncremen
t
*/
public
void
set
CreateUserIdNotList
(
List
<
Long
>
createUserIdNotLis
t
){
this
.
createUserIdNotList
=
createUserIdNotLis
t
;
public
void
set
TotalAddScoreIncrement
(
BigDecimal
totalAddScoreIncremen
t
){
this
.
totalAddScoreIncrement
=
totalAddScoreIncremen
t
;
}
/**
* 获取 开始 更新时间
* @return updateTimeStar
t
* 获取 员工绩效加分总分数汇总
* @return totalAddScoreLis
t
*/
public
String
getUpdateTimeStar
t
(){
return
this
.
updateTimeStar
t
;
public
List
<
BigDecimal
>
getTotalAddScoreLis
t
(){
return
this
.
totalAddScoreLis
t
;
}
/**
* 设置 开始 更新时间
* @param updateTimeStar
t
* 设置 员工绩效加分总分数汇总
* @param totalAddScoreLis
t
*/
public
void
set
UpdateTimeStart
(
String
updateTimeStar
t
){
this
.
updateTimeStart
=
updateTimeStar
t
;
public
void
set
TotalAddScoreList
(
List
<
BigDecimal
>
totalAddScoreLis
t
){
this
.
totalAddScoreList
=
totalAddScoreLis
t
;
}
/**
* 获取 结束 更新时间
* @return updateTimeEnd
* 获取 员工绩效加分总分数汇总
* @return totalAddScoreNotList
*/
public
String
getUpdateTimeEnd
(){
return
this
.
updateTimeEnd
;
public
List
<
BigDecimal
>
getTotalAddScoreNotList
(){
return
this
.
totalAddScoreNotList
;
}
/**
* 设置 结束 更新时间
* @param updateTimeEnd
* 设置 员工绩效加分总分数汇总
* @param totalAddScoreNotList
*/
public
void
set
UpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
public
void
set
TotalAddScoreNotList
(
List
<
BigDecimal
>
totalAddScoreNotList
){
this
.
totalAddScoreNotList
=
totalAddScoreNotList
;
}
/**
* 获取 开始 更新人id
* @return updateUserId
Start
* 获取 开始 员工绩效减分总分数汇总
* @return totalSubScore
Start
*/
public
Long
getUpdateUserId
Start
(){
return
this
.
updateUserId
Start
;
public
BigDecimal
getTotalSubScore
Start
(){
return
this
.
totalSubScore
Start
;
}
/**
* 设置 开始 更新人id
* @param updateUserId
Start
* 设置 开始 员工绩效减分总分数汇总
* @param totalSubScore
Start
*/
public
void
set
UpdateUserIdStart
(
Long
updateUserId
Start
){
this
.
updateUserIdStart
=
updateUserId
Start
;
public
void
set
TotalSubScoreStart
(
BigDecimal
totalSubScore
Start
){
this
.
totalSubScoreStart
=
totalSubScore
Start
;
}
/**
* 获取 结束 更新人id
* @return $updateUserId
End
* 获取 结束 员工绩效减分总分数汇总
* @return $totalSubScore
End
*/
public
Long
getUpdateUserId
End
(){
return
this
.
updateUserId
End
;
public
BigDecimal
getTotalSubScore
End
(){
return
this
.
totalSubScore
End
;
}
/**
* 设置 结束 更新人id
* @param updateUserId
End
* 设置 结束 员工绩效减分总分数汇总
* @param totalSubScore
End
*/
public
void
set
UpdateUserIdEnd
(
Long
updateUserId
End
){
this
.
updateUserIdEnd
=
updateUserId
End
;
public
void
set
TotalSubScoreEnd
(
BigDecimal
totalSubScore
End
){
this
.
totalSubScoreEnd
=
totalSubScore
End
;
}
/**
* 获取 增加 更新人id
* @return updateUserId
Increment
* 获取 增加 员工绩效减分总分数汇总
* @return totalSubScore
Increment
*/
public
Long
getUpdateUserId
Increment
(){
return
this
.
updateUserId
Increment
;
public
BigDecimal
getTotalSubScore
Increment
(){
return
this
.
totalSubScore
Increment
;
}
/**
* 设置 增加 更新人id
* @param updateUserId
Increment
* 设置 增加 员工绩效减分总分数汇总
* @param totalSubScore
Increment
*/
public
void
set
UpdateUserIdIncrement
(
Long
updateUserId
Increment
){
this
.
updateUserIdIncrement
=
updateUserId
Increment
;
public
void
set
TotalSubScoreIncrement
(
BigDecimal
totalSubScore
Increment
){
this
.
totalSubScoreIncrement
=
totalSubScore
Increment
;
}
/**
* 获取 更新人id
* @return updateUserId
List
* 获取 员工绩效减分总分数汇总
* @return totalSubScore
List
*/
public
List
<
Long
>
getUpdateUserId
List
(){
return
this
.
updateUserId
List
;
public
List
<
BigDecimal
>
getTotalSubScore
List
(){
return
this
.
totalSubScore
List
;
}
/**
* 设置 更新人id
* @param updateUserId
List
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
List
*/
public
void
set
UpdateUserIdList
(
List
<
Long
>
updateUserId
List
){
this
.
updateUserIdList
=
updateUserId
List
;
public
void
set
TotalSubScoreList
(
List
<
BigDecimal
>
totalSubScore
List
){
this
.
totalSubScoreList
=
totalSubScore
List
;
}
/**
* 获取 更新人id
* @return updateUserId
NotList
* 获取 员工绩效减分总分数汇总
* @return totalSubScore
NotList
*/
public
List
<
Long
>
getUpdateUserId
NotList
(){
return
this
.
updateUserId
NotList
;
public
List
<
BigDecimal
>
getTotalSubScore
NotList
(){
return
this
.
totalSubScore
NotList
;
}
/**
* 设置 更新人id
* @param updateUserId
NotList
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
NotList
*/
public
void
set
UpdateUserIdNotList
(
List
<
Long
>
updateUserId
NotList
){
this
.
updateUserIdNotList
=
updateUserId
NotList
;
public
void
set
TotalSubScoreNotList
(
List
<
BigDecimal
>
totalSubScore
NotList
){
this
.
totalSubScoreNotList
=
totalSubScore
NotList
;
}
...
...
@@ -1325,67 +1067,229 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
}
/**
* 获取 结束 评价绩效指标扣减分数
* @return $assessScoreSubEnd
* 获取 结束 评价绩效指标扣减分数
* @return $assessScoreSubEnd
*/
public
BigDecimal
getAssessScoreSubEnd
(){
return
this
.
assessScoreSubEnd
;
}
/**
* 设置 结束 评价绩效指标扣减分数
* @param assessScoreSubEnd
*/
public
void
setAssessScoreSubEnd
(
BigDecimal
assessScoreSubEnd
){
this
.
assessScoreSubEnd
=
assessScoreSubEnd
;
}
/**
* 获取 增加 评价绩效指标扣减分数
* @return assessScoreSubIncrement
*/
public
BigDecimal
getAssessScoreSubIncrement
(){
return
this
.
assessScoreSubIncrement
;
}
/**
* 设置 增加 评价绩效指标扣减分数
* @param assessScoreSubIncrement
*/
public
void
setAssessScoreSubIncrement
(
BigDecimal
assessScoreSubIncrement
){
this
.
assessScoreSubIncrement
=
assessScoreSubIncrement
;
}
/**
* 获取 评价绩效指标扣减分数
* @return assessScoreSubList
*/
public
List
<
BigDecimal
>
getAssessScoreSubList
(){
return
this
.
assessScoreSubList
;
}
/**
* 设置 评价绩效指标扣减分数
* @param assessScoreSubList
*/
public
void
setAssessScoreSubList
(
List
<
BigDecimal
>
assessScoreSubList
){
this
.
assessScoreSubList
=
assessScoreSubList
;
}
/**
* 获取 评价绩效指标扣减分数
* @return assessScoreSubNotList
*/
public
List
<
BigDecimal
>
getAssessScoreSubNotList
(){
return
this
.
assessScoreSubNotList
;
}
/**
* 设置 评价绩效指标扣减分数
* @param assessScoreSubNotList
*/
public
void
setAssessScoreSubNotList
(
List
<
BigDecimal
>
assessScoreSubNotList
){
this
.
assessScoreSubNotList
=
assessScoreSubNotList
;
}
/**
* 获取 开始 投诉绩效指标增加分数
* @return complainScoreAddStart
*/
public
BigDecimal
getComplainScoreAddStart
(){
return
this
.
complainScoreAddStart
;
}
/**
* 设置 开始 投诉绩效指标增加分数
* @param complainScoreAddStart
*/
public
void
setComplainScoreAddStart
(
BigDecimal
complainScoreAddStart
){
this
.
complainScoreAddStart
=
complainScoreAddStart
;
}
/**
* 获取 结束 投诉绩效指标增加分数
* @return $complainScoreAddEnd
*/
public
BigDecimal
getComplainScoreAddEnd
(){
return
this
.
complainScoreAddEnd
;
}
/**
* 设置 结束 投诉绩效指标增加分数
* @param complainScoreAddEnd
*/
public
void
setComplainScoreAddEnd
(
BigDecimal
complainScoreAddEnd
){
this
.
complainScoreAddEnd
=
complainScoreAddEnd
;
}
/**
* 获取 增加 投诉绩效指标增加分数
* @return complainScoreAddIncrement
*/
public
BigDecimal
getComplainScoreAddIncrement
(){
return
this
.
complainScoreAddIncrement
;
}
/**
* 设置 增加 投诉绩效指标增加分数
* @param complainScoreAddIncrement
*/
public
void
setComplainScoreAddIncrement
(
BigDecimal
complainScoreAddIncrement
){
this
.
complainScoreAddIncrement
=
complainScoreAddIncrement
;
}
/**
* 获取 投诉绩效指标增加分数
* @return complainScoreAddList
*/
public
List
<
BigDecimal
>
getComplainScoreAddList
(){
return
this
.
complainScoreAddList
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddList
*/
public
void
setComplainScoreAddList
(
List
<
BigDecimal
>
complainScoreAddList
){
this
.
complainScoreAddList
=
complainScoreAddList
;
}
/**
* 获取 投诉绩效指标增加分数
* @return complainScoreAddNotList
*/
public
List
<
BigDecimal
>
getComplainScoreAddNotList
(){
return
this
.
complainScoreAddNotList
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddNotList
*/
public
void
setComplainScoreAddNotList
(
List
<
BigDecimal
>
complainScoreAddNotList
){
this
.
complainScoreAddNotList
=
complainScoreAddNotList
;
}
/**
* 获取 开始 投诉绩效指标扣减分数
* @return complainScoreSubStart
*/
public
BigDecimal
getComplainScoreSubStart
(){
return
this
.
complainScoreSubStart
;
}
/**
* 设置 开始 投诉绩效指标扣减分数
* @param complainScoreSubStart
*/
public
void
setComplainScoreSubStart
(
BigDecimal
complainScoreSubStart
){
this
.
complainScoreSubStart
=
complainScoreSubStart
;
}
/**
* 获取 结束 投诉绩效指标扣减分数
* @return $complainScoreSubEnd
*/
public
BigDecimal
get
Assess
ScoreSubEnd
(){
return
this
.
assess
ScoreSubEnd
;
public
BigDecimal
get
Complain
ScoreSubEnd
(){
return
this
.
complain
ScoreSubEnd
;
}
/**
* 设置 结束 评价
绩效指标扣减分数
* @param assess
ScoreSubEnd
* 设置 结束 投诉
绩效指标扣减分数
* @param complain
ScoreSubEnd
*/
public
void
set
AssessScoreSubEnd
(
BigDecimal
assess
ScoreSubEnd
){
this
.
assessScoreSubEnd
=
assess
ScoreSubEnd
;
public
void
set
ComplainScoreSubEnd
(
BigDecimal
complain
ScoreSubEnd
){
this
.
complainScoreSubEnd
=
complain
ScoreSubEnd
;
}
/**
* 获取 增加 评价
绩效指标扣减分数
* @return assess
ScoreSubIncrement
* 获取 增加 投诉
绩效指标扣减分数
* @return complain
ScoreSubIncrement
*/
public
BigDecimal
get
Assess
ScoreSubIncrement
(){
return
this
.
assess
ScoreSubIncrement
;
public
BigDecimal
get
Complain
ScoreSubIncrement
(){
return
this
.
complain
ScoreSubIncrement
;
}
/**
* 设置 增加 评价
绩效指标扣减分数
* @param assess
ScoreSubIncrement
* 设置 增加 投诉
绩效指标扣减分数
* @param complain
ScoreSubIncrement
*/
public
void
set
AssessScoreSubIncrement
(
BigDecimal
assess
ScoreSubIncrement
){
this
.
assessScoreSubIncrement
=
assess
ScoreSubIncrement
;
public
void
set
ComplainScoreSubIncrement
(
BigDecimal
complain
ScoreSubIncrement
){
this
.
complainScoreSubIncrement
=
complain
ScoreSubIncrement
;
}
/**
* 获取 评价
绩效指标扣减分数
* @return assess
ScoreSubList
* 获取 投诉
绩效指标扣减分数
* @return complain
ScoreSubList
*/
public
List
<
BigDecimal
>
get
Assess
ScoreSubList
(){
return
this
.
assess
ScoreSubList
;
public
List
<
BigDecimal
>
get
Complain
ScoreSubList
(){
return
this
.
complain
ScoreSubList
;
}
/**
* 设置 评价
绩效指标扣减分数
* @param assess
ScoreSubList
* 设置 投诉
绩效指标扣减分数
* @param complain
ScoreSubList
*/
public
void
set
AssessScoreSubList
(
List
<
BigDecimal
>
assess
ScoreSubList
){
this
.
assessScoreSubList
=
assess
ScoreSubList
;
public
void
set
ComplainScoreSubList
(
List
<
BigDecimal
>
complain
ScoreSubList
){
this
.
complainScoreSubList
=
complain
ScoreSubList
;
}
/**
* 获取 评价
绩效指标扣减分数
* @return assess
ScoreSubNotList
* 获取 投诉
绩效指标扣减分数
* @return complain
ScoreSubNotList
*/
public
List
<
BigDecimal
>
get
Assess
ScoreSubNotList
(){
return
this
.
assess
ScoreSubNotList
;
public
List
<
BigDecimal
>
get
Complain
ScoreSubNotList
(){
return
this
.
complain
ScoreSubNotList
;
}
/**
* 设置 评价
绩效指标扣减分数
* @param assess
ScoreSubNotList
* 设置 投诉
绩效指标扣减分数
* @param complain
ScoreSubNotList
*/
public
void
set
AssessScoreSubNotList
(
List
<
BigDecimal
>
assess
ScoreSubNotList
){
this
.
assessScoreSubNotList
=
assess
ScoreSubNotList
;
public
void
set
ComplainScoreSubNotList
(
List
<
BigDecimal
>
complain
ScoreSubNotList
){
this
.
complainScoreSubNotList
=
complain
ScoreSubNotList
;
}
...
...
@@ -1822,56 +1726,250 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
* 设置 结束 其它绩效指标扣减分数
* @param otherScoreSubEnd
*/
public
void
setOtherScoreSubEnd
(
BigDecimal
otherScoreSubEnd
){
this
.
otherScoreSubEnd
=
otherScoreSubEnd
;
public
void
setOtherScoreSubEnd
(
BigDecimal
otherScoreSubEnd
){
this
.
otherScoreSubEnd
=
otherScoreSubEnd
;
}
/**
* 获取 增加 其它绩效指标扣减分数
* @return otherScoreSubIncrement
*/
public
BigDecimal
getOtherScoreSubIncrement
(){
return
this
.
otherScoreSubIncrement
;
}
/**
* 设置 增加 其它绩效指标扣减分数
* @param otherScoreSubIncrement
*/
public
void
setOtherScoreSubIncrement
(
BigDecimal
otherScoreSubIncrement
){
this
.
otherScoreSubIncrement
=
otherScoreSubIncrement
;
}
/**
* 获取 其它绩效指标扣减分数
* @return otherScoreSubList
*/
public
List
<
BigDecimal
>
getOtherScoreSubList
(){
return
this
.
otherScoreSubList
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSubList
*/
public
void
setOtherScoreSubList
(
List
<
BigDecimal
>
otherScoreSubList
){
this
.
otherScoreSubList
=
otherScoreSubList
;
}
/**
* 获取 其它绩效指标扣减分数
* @return otherScoreSubNotList
*/
public
List
<
BigDecimal
>
getOtherScoreSubNotList
(){
return
this
.
otherScoreSubNotList
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSubNotList
*/
public
void
setOtherScoreSubNotList
(
List
<
BigDecimal
>
otherScoreSubNotList
){
this
.
otherScoreSubNotList
=
otherScoreSubNotList
;
}
/**
* 获取 备注
* @return remarkList
*/
public
List
<
String
>
getRemarkList
(){
return
this
.
remarkList
;
}
/**
* 设置 备注
* @param remarkList
*/
public
void
setRemarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
}
/**
* 获取 备注
* @return remarkNotList
*/
public
List
<
String
>
getRemarkNotList
(){
return
this
.
remarkNotList
;
}
/**
* 设置 备注
* @param remarkNotList
*/
public
void
setRemarkNotList
(
List
<
String
>
remarkNotList
){
this
.
remarkNotList
=
remarkNotList
;
}
/**
* 获取 开始 年
* @return yearStart
*/
public
Integer
getYearStart
(){
return
this
.
yearStart
;
}
/**
* 设置 开始 年
* @param yearStart
*/
public
void
setYearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
}
/**
* 获取 结束 年
* @return $yearEnd
*/
public
Integer
getYearEnd
(){
return
this
.
yearEnd
;
}
/**
* 设置 结束 年
* @param yearEnd
*/
public
void
setYearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
}
/**
* 获取 增加 年
* @return yearIncrement
*/
public
Integer
getYearIncrement
(){
return
this
.
yearIncrement
;
}
/**
* 设置 增加 年
* @param yearIncrement
*/
public
void
setYearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
}
/**
* 获取 年
* @return yearList
*/
public
List
<
Integer
>
getYearList
(){
return
this
.
yearList
;
}
/**
* 设置 年
* @param yearList
*/
public
void
setYearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
}
/**
* 获取 年
* @return yearNotList
*/
public
List
<
Integer
>
getYearNotList
(){
return
this
.
yearNotList
;
}
/**
* 设置 年
* @param yearNotList
*/
public
void
setYearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
}
/**
* 获取 开始 月
* @return monthStart
*/
public
Integer
getMonthStart
(){
return
this
.
monthStart
;
}
/**
* 设置 开始 月
* @param monthStart
*/
public
void
setMonthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
}
/**
* 获取 结束 月
* @return $monthEnd
*/
public
Integer
getMonthEnd
(){
return
this
.
monthEnd
;
}
/**
* 设置 结束 月
* @param monthEnd
*/
public
void
setMonthEnd
(
Integer
monthEnd
){
this
.
monthEnd
=
monthEnd
;
}
/**
* 获取 增加 其它绩效指标扣减分数
* @return otherScoreSub
Increment
* 获取 增加 月
* @return month
Increment
*/
public
BigDecimal
getOtherScoreSub
Increment
(){
return
this
.
otherScoreSub
Increment
;
public
Integer
getMonth
Increment
(){
return
this
.
month
Increment
;
}
/**
* 设置 增加 其它绩效指标扣减分数
* @param otherScoreSub
Increment
* 设置 增加 月
* @param month
Increment
*/
public
void
set
OtherScoreSubIncrement
(
BigDecimal
otherScoreSub
Increment
){
this
.
otherScoreSubIncrement
=
otherScoreSub
Increment
;
public
void
set
MonthIncrement
(
Integer
month
Increment
){
this
.
monthIncrement
=
month
Increment
;
}
/**
* 获取 其它绩效指标扣减分数
* @return otherScoreSub
List
* 获取 月
* @return month
List
*/
public
List
<
BigDecimal
>
getOtherScoreSub
List
(){
return
this
.
otherScoreSub
List
;
public
List
<
Integer
>
getMonth
List
(){
return
this
.
month
List
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSub
List
* 设置 月
* @param month
List
*/
public
void
set
OtherScoreSubList
(
List
<
BigDecimal
>
otherScoreSub
List
){
this
.
otherScoreSubList
=
otherScoreSub
List
;
public
void
set
MonthList
(
List
<
Integer
>
month
List
){
this
.
monthList
=
month
List
;
}
/**
* 获取 其它绩效指标扣减分数
* @return otherScoreSub
NotList
* 获取 月
* @return month
NotList
*/
public
List
<
BigDecimal
>
getOtherScoreSub
NotList
(){
return
this
.
otherScoreSub
NotList
;
public
List
<
Integer
>
getMonth
NotList
(){
return
this
.
month
NotList
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSub
NotList
* 设置 月
* @param month
NotList
*/
public
void
set
OtherScoreSubNotList
(
List
<
BigDecimal
>
otherScoreSub
NotList
){
this
.
otherScoreSubNotList
=
otherScoreSub
NotList
;
public
void
set
MonthNotList
(
List
<
Integer
>
month
NotList
){
this
.
monthNotList
=
month
NotList
;
}
...
...
@@ -1957,326 +2055,228 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/**
* 获取 开始 员工绩效加分总分数汇总
* @return totalAddScoreStart
*/
public
BigDecimal
getTotalAddScoreStart
(){
return
this
.
totalAddScoreStart
;
}
/**
* 设置 开始 员工绩效加分总分数汇总
* @param totalAddScoreStart
*/
public
void
setTotalAddScoreStart
(
BigDecimal
totalAddScoreStart
){
this
.
totalAddScoreStart
=
totalAddScoreStart
;
}
/**
* 获取 结束 员工绩效加分总分数汇总
* @return $totalAddScoreEnd
*/
public
BigDecimal
getTotalAddScoreEnd
(){
return
this
.
totalAddScoreEnd
;
}
/**
* 设置 结束 员工绩效加分总分数汇总
* @param totalAddScoreEnd
*/
public
void
setTotalAddScoreEnd
(
BigDecimal
totalAddScoreEnd
){
this
.
totalAddScoreEnd
=
totalAddScoreEnd
;
}
/**
* 获取 增加 员工绩效加分总分数汇总
* @return totalAddScoreIncrement
*/
public
BigDecimal
getTotalAddScoreIncrement
(){
return
this
.
totalAddScoreIncrement
;
}
/**
* 设置 增加 员工绩效加分总分数汇总
* @param totalAddScoreIncrement
*/
public
void
setTotalAddScoreIncrement
(
BigDecimal
totalAddScoreIncrement
){
this
.
totalAddScoreIncrement
=
totalAddScoreIncrement
;
}
/**
* 获取 员工绩效加分总分数汇总
* @return totalAddScoreList
*/
public
List
<
BigDecimal
>
getTotalAddScoreList
(){
return
this
.
totalAddScoreList
;
}
/**
* 设置 员工绩效加分总分数汇总
* @param totalAddScoreList
*/
public
void
setTotalAddScoreList
(
List
<
BigDecimal
>
totalAddScoreList
){
this
.
totalAddScoreList
=
totalAddScoreList
;
}
/**
* 获取 员工绩效加分总分数汇总
* @return totalAddScoreNotList
*/
public
List
<
BigDecimal
>
getTotalAddScoreNotList
(){
return
this
.
totalAddScoreNotList
;
}
/**
* 设置 员工绩效加分总分数汇总
* @param totalAddScoreNotList
*/
public
void
setTotalAddScoreNotList
(
List
<
BigDecimal
>
totalAddScoreNotList
){
this
.
totalAddScoreNotList
=
totalAddScoreNotList
;
}
/**
* 获取 开始 员工绩效减分总分数汇总
* @return totalSubScoreStart
*/
public
BigDecimal
getTotalSubScoreStart
(){
return
this
.
totalSubScoreStart
;
}
/**
* 设置 开始 员工绩效减分总分数汇总
* @param totalSubScoreStart
*/
public
void
setTotalSubScoreStart
(
BigDecimal
totalSubScoreStart
){
this
.
totalSubScoreStart
=
totalSubScoreStart
;
}
/**
* 获取 结束 员工绩效减分总分数汇总
* @return $totalSubScoreEnd
*/
public
BigDecimal
getTotalSubScoreEnd
(){
return
this
.
totalSubScoreEnd
;
}
/**
* 设置 结束 员工绩效减分总分数汇总
* @param totalSubScoreEnd
* 获取 开始 创建时间
* @return createTimeStart
*/
public
void
setTotalSubScoreEnd
(
BigDecimal
totalSubScoreEnd
){
this
.
totalSubScoreEnd
=
totalSubScoreEnd
;
public
String
getCreateTimeStart
(
){
return
this
.
createTimeStart
;
}
/**
* 获取 增加 员工绩效减分总分数汇总
* @return totalSubScoreIncremen
t
* 设置 开始 创建时间
* @param createTimeStar
t
*/
public
BigDecimal
getTotalSubScoreIncrement
(
){
return
this
.
totalSubScoreIncremen
t
;
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStar
t
;
}
/**
* 设置 增加 员工绩效减分总分数汇总
* @param totalSubScoreIncrement
* 获取 结束 创建时间
* @return createTimeEnd
*/
public
void
setTotalSubScoreIncrement
(
BigDecimal
totalSubScoreIncrement
){
this
.
totalSubScoreIncrement
=
totalSubScoreIncrement
;
public
String
getCreateTimeEnd
(
){
return
this
.
createTimeEnd
;
}
/**
* 获取 员工绩效减分总分数汇总
* @return totalSubScoreList
* 设置 结束 创建时间
* @param createTimeEnd
*/
public
List
<
BigDecimal
>
getTotalSubScoreList
(
){
return
this
.
totalSubScoreList
;
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
}
/**
* 设置 员工绩效减分总分数汇总
* @param totalSubScoreLis
t
* 获取 开始 创建人id
* @return createUserIdStar
t
*/
public
void
setTotalSubScoreList
(
List
<
BigDecimal
>
totalSubScoreList
){
this
.
totalSubScoreList
=
totalSubScoreLis
t
;
public
Long
getCreateUserIdStart
(
){
return
this
.
createUserIdStar
t
;
}
/**
* 获取 员工绩效减分总分数汇总
* @return totalSubScoreNotLis
t
* 设置 开始 创建人id
* @param createUserIdStar
t
*/
public
List
<
BigDecimal
>
getTotalSubScoreNotList
(
){
return
this
.
totalSubScoreNotLis
t
;
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStar
t
;
}
/**
* 设置 员工绩效减分总分数汇总
* @param totalSubScoreNotList
* 获取 结束 创建人id
* @return $createUserIdEnd
*/
public
void
setTotalSubScoreNotList
(
List
<
BigDecimal
>
totalSubScoreNotList
){
this
.
totalSubScoreNotList
=
totalSubScoreNotList
;
public
Long
getCreateUserIdEnd
(
){
return
this
.
createUserIdEnd
;
}
/**
* 获取 开始 投诉绩效指标增加分数
* @return complainScoreAddStart
* 设置 结束 创建人id
* @param createUserIdEnd
*/
public
BigDecimal
getComplainScoreAddStart
(
){
return
this
.
complainScoreAddStart
;
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
}
/**
* 设置 开始 投诉绩效指标增加分数
* @param complainScoreAddStar
t
* 获取 增加 创建人id
* @return createUserIdIncremen
t
*/
public
void
setComplainScoreAddStart
(
BigDecimal
complainScoreAddStart
){
this
.
complainScoreAddStart
=
complainScoreAddStar
t
;
public
Long
getCreateUserIdIncrement
(
){
return
this
.
createUserIdIncremen
t
;
}
/**
* 获取 结束 投诉绩效指标增加分数
* @return $complainScoreAddEnd
* 设置 增加 创建人id
* @param createUserIdIncrement
*/
public
BigDecimal
getComplainScoreAddEnd
(
){
return
this
.
complainScoreAddEnd
;
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
/**
* 设置 结束 投诉绩效指标增加分数
* @param complainScoreAddEnd
* 获取 创建人id
* @return createUserIdList
*/
public
void
setComplainScoreAddEnd
(
BigDecimal
complainScoreAddEnd
){
this
.
complainScoreAddEnd
=
complainScoreAddEnd
;
public
List
<
Long
>
getCreateUserIdList
(
){
return
this
.
createUserIdList
;
}
/**
* 获取 增加 投诉绩效指标增加分数
* @return complainScoreAddIncremen
t
* 设置 创建人id
* @param createUserIdLis
t
*/
public
BigDecimal
getComplainScoreAddIncrement
(
){
return
this
.
complainScoreAddIncremen
t
;
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdLis
t
;
}
/**
* 设置 增加 投诉绩效指标增加分数
* @param complainScoreAddIncremen
t
* 获取 创建人id
* @return createUserIdNotLis
t
*/
public
void
setComplainScoreAddIncrement
(
BigDecimal
complainScoreAddIncrement
){
this
.
complainScoreAddIncrement
=
complainScoreAddIncremen
t
;
public
List
<
Long
>
getCreateUserIdNotList
(
){
return
this
.
createUserIdNotLis
t
;
}
/**
* 获取 投诉绩效指标增加分数
* @return complainScoreAdd
List
* 设置 创建人id
* @param createUserIdNot
List
*/
public
List
<
BigDecimal
>
getComplainScoreAddList
(
){
return
this
.
complainScoreAdd
List
;
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNot
List
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddLis
t
* 获取 开始 更新时间
* @return updateTimeStar
t
*/
public
void
setComplainScoreAddList
(
List
<
BigDecimal
>
complainScoreAddList
){
this
.
complainScoreAddList
=
complainScoreAddLis
t
;
public
String
getUpdateTimeStart
(
){
return
this
.
updateTimeStar
t
;
}
/**
* 获取 投诉绩效指标增加分数
* @return complainScoreAddNotLis
t
* 设置 开始 更新时间
* @param updateTimeStar
t
*/
public
List
<
BigDecimal
>
getComplainScoreAddNotList
(
){
return
this
.
complainScoreAddNotLis
t
;
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
this
.
updateTimeStart
=
updateTimeStar
t
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddNotList
* 获取 结束 更新时间
* @return updateTimeEnd
*/
public
void
setComplainScoreAddNotList
(
List
<
BigDecimal
>
complainScoreAddNotList
){
this
.
complainScoreAddNotList
=
complainScoreAddNotList
;
public
String
getUpdateTimeEnd
(
){
return
this
.
updateTimeEnd
;
}
/**
* 设置 结束 更新时间
* @param updateTimeEnd
*/
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
}
/**
* 获取 开始 投诉绩效指标扣减分数
* @return complainScoreSub
Start
* 获取 开始 更新人id
* @return updateUserId
Start
*/
public
BigDecimal
getComplainScoreSub
Start
(){
return
this
.
complainScoreSub
Start
;
public
Long
getUpdateUserId
Start
(){
return
this
.
updateUserId
Start
;
}
/**
* 设置 开始 投诉绩效指标扣减分数
* @param complainScoreSub
Start
* 设置 开始 更新人id
* @param updateUserId
Start
*/
public
void
set
ComplainScoreSubStart
(
BigDecimal
complainScoreSub
Start
){
this
.
complainScoreSubStart
=
complainScoreSub
Start
;
public
void
set
UpdateUserIdStart
(
Long
updateUserId
Start
){
this
.
updateUserIdStart
=
updateUserId
Start
;
}
/**
* 获取 结束 投诉绩效指标扣减分数
* @return $complainScoreSub
End
* 获取 结束 更新人id
* @return $updateUserId
End
*/
public
BigDecimal
getComplainScoreSub
End
(){
return
this
.
complainScoreSub
End
;
public
Long
getUpdateUserId
End
(){
return
this
.
updateUserId
End
;
}
/**
* 设置 结束 投诉绩效指标扣减分数
* @param complainScoreSub
End
* 设置 结束 更新人id
* @param updateUserId
End
*/
public
void
set
ComplainScoreSubEnd
(
BigDecimal
complainScoreSub
End
){
this
.
complainScoreSubEnd
=
complainScoreSub
End
;
public
void
set
UpdateUserIdEnd
(
Long
updateUserId
End
){
this
.
updateUserIdEnd
=
updateUserId
End
;
}
/**
* 获取 增加 投诉绩效指标扣减分数
* @return complainScoreSub
Increment
* 获取 增加 更新人id
* @return updateUserId
Increment
*/
public
BigDecimal
getComplainScoreSub
Increment
(){
return
this
.
complainScoreSub
Increment
;
public
Long
getUpdateUserId
Increment
(){
return
this
.
updateUserId
Increment
;
}
/**
* 设置 增加 投诉绩效指标扣减分数
* @param complainScoreSub
Increment
* 设置 增加 更新人id
* @param updateUserId
Increment
*/
public
void
set
ComplainScoreSubIncrement
(
BigDecimal
complainScoreSub
Increment
){
this
.
complainScoreSubIncrement
=
complainScoreSub
Increment
;
public
void
set
UpdateUserIdIncrement
(
Long
updateUserId
Increment
){
this
.
updateUserIdIncrement
=
updateUserId
Increment
;
}
/**
* 获取 投诉绩效指标扣减分数
* @return complainScoreSub
List
* 获取 更新人id
* @return updateUserId
List
*/
public
List
<
BigDecimal
>
getComplainScoreSub
List
(){
return
this
.
complainScoreSub
List
;
public
List
<
Long
>
getUpdateUserId
List
(){
return
this
.
updateUserId
List
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
List
* 设置 更新人id
* @param updateUserId
List
*/
public
void
set
ComplainScoreSubList
(
List
<
BigDecimal
>
complainScoreSub
List
){
this
.
complainScoreSubList
=
complainScoreSub
List
;
public
void
set
UpdateUserIdList
(
List
<
Long
>
updateUserId
List
){
this
.
updateUserIdList
=
updateUserId
List
;
}
/**
* 获取 投诉绩效指标扣减分数
* @return complainScoreSub
NotList
* 获取 更新人id
* @return updateUserId
NotList
*/
public
List
<
BigDecimal
>
getComplainScoreSub
NotList
(){
return
this
.
complainScoreSub
NotList
;
public
List
<
Long
>
getUpdateUserId
NotList
(){
return
this
.
updateUserId
NotList
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
NotList
* 设置 更新人id
* @param updateUserId
NotList
*/
public
void
set
ComplainScoreSubNotList
(
List
<
BigDecimal
>
complainScoreSub
NotList
){
this
.
complainScoreSubNotList
=
complainScoreSub
NotList
;
public
void
set
UpdateUserIdNotList
(
List
<
Long
>
updateUserId
NotList
){
this
.
updateUserIdNotList
=
updateUserId
NotList
;
}
...
...
@@ -2336,74 +2336,74 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
/**
* 设置 部门id号
* @param dept
Id
* @param staff
Id
*/
public
StaffPerformStatQuery
deptId
(
Long
dept
Id
){
setDeptId
(
dept
Id
);
public
StaffPerformStatQuery
staffId
(
Long
staff
Id
){
setStaffId
(
staff
Id
);
return
this
;
}
/**
* 设置 开始 部门id号
* @param dept
IdStart
* @param staff
IdStart
*/
public
StaffPerformStatQuery
deptIdStart
(
Long
dept
IdStart
){
this
.
deptIdStart
=
dept
IdStart
;
public
StaffPerformStatQuery
staffIdStart
(
Long
staff
IdStart
){
this
.
staffIdStart
=
staff
IdStart
;
return
this
;
}
/**
* 设置 结束 部门id号
* @param dept
IdEnd
* @param staff
IdEnd
*/
public
StaffPerformStatQuery
deptIdEnd
(
Long
dept
IdEnd
){
this
.
deptIdEnd
=
dept
IdEnd
;
public
StaffPerformStatQuery
staffIdEnd
(
Long
staff
IdEnd
){
this
.
staffIdEnd
=
staff
IdEnd
;
return
this
;
}
/**
* 设置 增加 部门id号
* @param dept
IdIncrement
* @param staff
IdIncrement
*/
public
StaffPerformStatQuery
deptIdIncrement
(
Long
dept
IdIncrement
){
this
.
deptIdIncrement
=
dept
IdIncrement
;
public
StaffPerformStatQuery
staffIdIncrement
(
Long
staff
IdIncrement
){
this
.
staffIdIncrement
=
staff
IdIncrement
;
return
this
;
}
/**
* 设置 部门id号
* @param dept
IdList
* @param staff
IdList
*/
public
StaffPerformStatQuery
deptIdList
(
List
<
Long
>
dept
IdList
){
this
.
deptIdList
=
dept
IdList
;
public
StaffPerformStatQuery
staffIdList
(
List
<
Long
>
staff
IdList
){
this
.
staffIdList
=
staff
IdList
;
return
this
;
}
/**
* 设置 部门id号
* @param dept
IdNotList
* @param staff
IdNotList
*/
public
StaffPerformStatQuery
deptIdNotList
(
List
<
Long
>
dept
IdNotList
){
this
.
deptIdNotList
=
dept
IdNotList
;
public
StaffPerformStatQuery
staffIdNotList
(
List
<
Long
>
staff
IdNotList
){
this
.
staffIdNotList
=
staff
IdNotList
;
return
this
;
}
/**
* 设置 部门名称
* @param dept
Name
* @param staff
Name
*/
public
StaffPerformStatQuery
deptName
(
String
dept
Name
){
set
DeptName
(
dept
Name
);
public
StaffPerformStatQuery
staffName
(
String
staff
Name
){
set
StaffName
(
staff
Name
);
return
this
;
}
/**
* 设置 部门名称
* @param dept
NameList
* @param staff
NameList
*/
public
StaffPerformStatQuery
deptNameList
(
List
<
String
>
dept
NameList
){
this
.
deptNameList
=
dept
NameList
;
public
StaffPerformStatQuery
staffNameList
(
List
<
String
>
staff
NameList
){
this
.
staffNameList
=
staff
NameList
;
return
this
;
}
...
...
@@ -2421,280 +2421,151 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
* @param totalScoreStart
*/
public
StaffPerformStatQuery
totalScoreStart
(
BigDecimal
totalScoreStart
){
this
.
totalScoreStart
=
totalScoreStart
;
return
this
;
}
/**
* 设置 结束 员工绩效总分数
* @param totalScoreEnd
*/
public
StaffPerformStatQuery
totalScoreEnd
(
BigDecimal
totalScoreEnd
){
this
.
totalScoreEnd
=
totalScoreEnd
;
return
this
;
}
/**
* 设置 增加 员工绩效总分数
* @param totalScoreIncrement
*/
public
StaffPerformStatQuery
totalScoreIncrement
(
BigDecimal
totalScoreIncrement
){
this
.
totalScoreIncrement
=
totalScoreIncrement
;
return
this
;
}
/**
* 设置 员工绩效总分数
* @param totalScoreList
*/
public
StaffPerformStatQuery
totalScoreList
(
List
<
BigDecimal
>
totalScoreList
){
this
.
totalScoreList
=
totalScoreList
;
return
this
;
}
/**
* 设置 员工绩效总分数
* @param totalScoreNotList
*/
public
StaffPerformStatQuery
totalScoreNotList
(
List
<
BigDecimal
>
totalScoreNotList
){
this
.
totalScoreNotList
=
totalScoreNotList
;
return
this
;
}
/**
* 设置 备注
* @param remark
*/
public
StaffPerformStatQuery
remark
(
String
remark
){
setRemark
(
remark
);
return
this
;
}
/**
* 设置 备注
* @param remarkList
*/
public
StaffPerformStatQuery
remarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
return
this
;
}
/**
* 设置 年
* @param year
*/
public
StaffPerformStatQuery
year
(
Integer
year
){
setYear
(
year
);
return
this
;
}
/**
* 设置 开始 年
* @param yearStart
*/
public
StaffPerformStatQuery
yearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
return
this
;
}
/**
* 设置 结束 年
* @param yearEnd
*/
public
StaffPerformStatQuery
yearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
return
this
;
}
/**
* 设置 增加 年
* @param yearIncrement
*/
public
StaffPerformStatQuery
yearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
return
this
;
}
/**
* 设置 年
* @param yearList
*/
public
StaffPerformStatQuery
yearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
return
this
;
}
/**
* 设置 年
* @param yearNotList
*/
public
StaffPerformStatQuery
yearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
return
this
;
}
/**
* 设置 月
* @param month
*/
public
StaffPerformStatQuery
month
(
Integer
month
){
setMonth
(
month
);
return
this
;
}
/**
* 设置 开始 月
* @param monthStart
*/
public
StaffPerformStatQuery
monthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
this
.
totalScoreStart
=
totalScoreStart
;
return
this
;
}
/**
* 设置 结束 月
* @param month
End
* 设置 结束 员工绩效总分数
* @param totalScore
End
*/
public
StaffPerformStatQuery
monthEnd
(
Integer
month
End
){
this
.
monthEnd
=
month
End
;
public
StaffPerformStatQuery
totalScoreEnd
(
BigDecimal
totalScore
End
){
this
.
totalScoreEnd
=
totalScore
End
;
return
this
;
}
/**
* 设置 增加 月
* @param month
Increment
* 设置 增加 员工绩效总分数
* @param totalScore
Increment
*/
public
StaffPerformStatQuery
monthIncrement
(
Integer
month
Increment
){
this
.
monthIncrement
=
month
Increment
;
public
StaffPerformStatQuery
totalScoreIncrement
(
BigDecimal
totalScore
Increment
){
this
.
totalScoreIncrement
=
totalScore
Increment
;
return
this
;
}
/**
* 设置 月
* @param month
List
* 设置 员工绩效总分数
* @param totalScore
List
*/
public
StaffPerformStatQuery
monthList
(
List
<
Integer
>
month
List
){
this
.
monthList
=
month
List
;
public
StaffPerformStatQuery
totalScoreList
(
List
<
BigDecimal
>
totalScore
List
){
this
.
totalScoreList
=
totalScore
List
;
return
this
;
}
/**
* 设置 月
* @param month
NotList
* 设置 员工绩效总分数
* @param totalScore
NotList
*/
public
StaffPerformStatQuery
monthNotList
(
List
<
Integer
>
month
NotList
){
this
.
monthNotList
=
month
NotList
;
public
StaffPerformStatQuery
totalScoreNotList
(
List
<
BigDecimal
>
totalScore
NotList
){
this
.
totalScoreNotList
=
totalScore
NotList
;
return
this
;
}
/**
* 设置 创建人id
* @param createUserId
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
*/
public
StaffPerformStatQuery
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
public
StaffPerformStatQuery
totalAddScore
(
BigDecimal
totalAddScore
){
setTotalAddScore
(
totalAddScore
);
return
this
;
}
/**
* 设置 开始 创建人id
* @param createUserId
Start
* 设置 开始 员工绩效加分总分数汇总
* @param totalAddScore
Start
*/
public
StaffPerformStatQuery
createUserIdStart
(
Long
createUserId
Start
){
this
.
createUserIdStart
=
createUserId
Start
;
public
StaffPerformStatQuery
totalAddScoreStart
(
BigDecimal
totalAddScore
Start
){
this
.
totalAddScoreStart
=
totalAddScore
Start
;
return
this
;
}
/**
* 设置 结束 创建人id
* @param createUserId
End
* 设置 结束 员工绩效加分总分数汇总
* @param totalAddScore
End
*/
public
StaffPerformStatQuery
createUserIdEnd
(
Long
createUserId
End
){
this
.
createUserIdEnd
=
createUserId
End
;
public
StaffPerformStatQuery
totalAddScoreEnd
(
BigDecimal
totalAddScore
End
){
this
.
totalAddScoreEnd
=
totalAddScore
End
;
return
this
;
}
/**
* 设置 增加 创建人id
* @param createUserId
Increment
* 设置 增加 员工绩效加分总分数汇总
* @param totalAddScore
Increment
*/
public
StaffPerformStatQuery
createUserIdIncrement
(
Long
createUserId
Increment
){
this
.
createUserIdIncrement
=
createUserId
Increment
;
public
StaffPerformStatQuery
totalAddScoreIncrement
(
BigDecimal
totalAddScore
Increment
){
this
.
totalAddScoreIncrement
=
totalAddScore
Increment
;
return
this
;
}
/**
* 设置 创建人id
* @param createUserId
List
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
List
*/
public
StaffPerformStatQuery
createUserIdList
(
List
<
Long
>
createUserId
List
){
this
.
createUserIdList
=
createUserId
List
;
public
StaffPerformStatQuery
totalAddScoreList
(
List
<
BigDecimal
>
totalAddScore
List
){
this
.
totalAddScoreList
=
totalAddScore
List
;
return
this
;
}
/**
* 设置 创建人id
* @param createUserId
NotList
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
NotList
*/
public
StaffPerformStatQuery
createUserIdNotList
(
List
<
Long
>
createUserId
NotList
){
this
.
createUserIdNotList
=
createUserId
NotList
;
public
StaffPerformStatQuery
totalAddScoreNotList
(
List
<
BigDecimal
>
totalAddScore
NotList
){
this
.
totalAddScoreNotList
=
totalAddScore
NotList
;
return
this
;
}
/**
* 设置 更新人id
* @param updateUserId
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
*/
public
StaffPerformStatQuery
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
public
StaffPerformStatQuery
totalSubScore
(
BigDecimal
totalSubScore
){
setTotalSubScore
(
totalSubScore
);
return
this
;
}
/**
* 设置 开始 更新人id
* @param updateUserId
Start
* 设置 开始 员工绩效减分总分数汇总
* @param totalSubScore
Start
*/
public
StaffPerformStatQuery
updateUserIdStart
(
Long
updateUserId
Start
){
this
.
updateUserIdStart
=
updateUserId
Start
;
public
StaffPerformStatQuery
totalSubScoreStart
(
BigDecimal
totalSubScore
Start
){
this
.
totalSubScoreStart
=
totalSubScore
Start
;
return
this
;
}
/**
* 设置 结束 更新人id
* @param updateUserId
End
* 设置 结束 员工绩效减分总分数汇总
* @param totalSubScore
End
*/
public
StaffPerformStatQuery
updateUserIdEnd
(
Long
updateUserId
End
){
this
.
updateUserIdEnd
=
updateUserId
End
;
public
StaffPerformStatQuery
totalSubScoreEnd
(
BigDecimal
totalSubScore
End
){
this
.
totalSubScoreEnd
=
totalSubScore
End
;
return
this
;
}
/**
* 设置 增加 更新人id
* @param updateUserId
Increment
* 设置 增加 员工绩效减分总分数汇总
* @param totalSubScore
Increment
*/
public
StaffPerformStatQuery
updateUserIdIncrement
(
Long
updateUserId
Increment
){
this
.
updateUserIdIncrement
=
updateUserId
Increment
;
public
StaffPerformStatQuery
totalSubScoreIncrement
(
BigDecimal
totalSubScore
Increment
){
this
.
totalSubScoreIncrement
=
totalSubScore
Increment
;
return
this
;
}
/**
* 设置 更新人id
* @param updateUserId
List
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
List
*/
public
StaffPerformStatQuery
updateUserIdList
(
List
<
Long
>
updateUserId
List
){
this
.
updateUserIdList
=
updateUserId
List
;
public
StaffPerformStatQuery
totalSubScoreList
(
List
<
BigDecimal
>
totalSubScore
List
){
this
.
totalSubScoreList
=
totalSubScore
List
;
return
this
;
}
/**
* 设置 更新人id
* @param updateUserId
NotList
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
NotList
*/
public
StaffPerformStatQuery
updateUserIdNotList
(
List
<
Long
>
updateUserId
NotList
){
this
.
updateUserIdNotList
=
updateUserId
NotList
;
public
StaffPerformStatQuery
totalSubScoreNotList
(
List
<
BigDecimal
>
totalSubScore
NotList
){
this
.
totalSubScoreNotList
=
totalSubScore
NotList
;
return
this
;
}
...
...
@@ -2914,6 +2785,114 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAdd
*/
public
StaffPerformStatQuery
complainScoreAdd
(
BigDecimal
complainScoreAdd
){
setComplainScoreAdd
(
complainScoreAdd
);
return
this
;
}
/**
* 设置 开始 投诉绩效指标增加分数
* @param complainScoreAddStart
*/
public
StaffPerformStatQuery
complainScoreAddStart
(
BigDecimal
complainScoreAddStart
){
this
.
complainScoreAddStart
=
complainScoreAddStart
;
return
this
;
}
/**
* 设置 结束 投诉绩效指标增加分数
* @param complainScoreAddEnd
*/
public
StaffPerformStatQuery
complainScoreAddEnd
(
BigDecimal
complainScoreAddEnd
){
this
.
complainScoreAddEnd
=
complainScoreAddEnd
;
return
this
;
}
/**
* 设置 增加 投诉绩效指标增加分数
* @param complainScoreAddIncrement
*/
public
StaffPerformStatQuery
complainScoreAddIncrement
(
BigDecimal
complainScoreAddIncrement
){
this
.
complainScoreAddIncrement
=
complainScoreAddIncrement
;
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddList
*/
public
StaffPerformStatQuery
complainScoreAddList
(
List
<
BigDecimal
>
complainScoreAddList
){
this
.
complainScoreAddList
=
complainScoreAddList
;
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAddNotList
*/
public
StaffPerformStatQuery
complainScoreAddNotList
(
List
<
BigDecimal
>
complainScoreAddNotList
){
this
.
complainScoreAddNotList
=
complainScoreAddNotList
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
*/
public
StaffPerformStatQuery
complainScoreSub
(
BigDecimal
complainScoreSub
){
setComplainScoreSub
(
complainScoreSub
);
return
this
;
}
/**
* 设置 开始 投诉绩效指标扣减分数
* @param complainScoreSubStart
*/
public
StaffPerformStatQuery
complainScoreSubStart
(
BigDecimal
complainScoreSubStart
){
this
.
complainScoreSubStart
=
complainScoreSubStart
;
return
this
;
}
/**
* 设置 结束 投诉绩效指标扣减分数
* @param complainScoreSubEnd
*/
public
StaffPerformStatQuery
complainScoreSubEnd
(
BigDecimal
complainScoreSubEnd
){
this
.
complainScoreSubEnd
=
complainScoreSubEnd
;
return
this
;
}
/**
* 设置 增加 投诉绩效指标扣减分数
* @param complainScoreSubIncrement
*/
public
StaffPerformStatQuery
complainScoreSubIncrement
(
BigDecimal
complainScoreSubIncrement
){
this
.
complainScoreSubIncrement
=
complainScoreSubIncrement
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSubList
*/
public
StaffPerformStatQuery
complainScoreSubList
(
List
<
BigDecimal
>
complainScoreSubList
){
this
.
complainScoreSubList
=
complainScoreSubList
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSubNotList
*/
public
StaffPerformStatQuery
complainScoreSubNotList
(
List
<
BigDecimal
>
complainScoreSubNotList
){
this
.
complainScoreSubNotList
=
complainScoreSubNotList
;
return
this
;
}
/**
* 设置 办件绩效指标增加分数
* @param workScoreAdd
...
...
@@ -3224,287 +3203,308 @@ public class StaffPerformStatQuery extends StaffPerformStatEntity {
* 设置 其它绩效指标扣减分数
* @param otherScoreSubList
*/
public
StaffPerformStatQuery
otherScoreSubList
(
List
<
BigDecimal
>
otherScoreSubList
){
this
.
otherScoreSubList
=
otherScoreSubList
;
public
StaffPerformStatQuery
otherScoreSubList
(
List
<
BigDecimal
>
otherScoreSubList
){
this
.
otherScoreSubList
=
otherScoreSubList
;
return
this
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSubNotList
*/
public
StaffPerformStatQuery
otherScoreSubNotList
(
List
<
BigDecimal
>
otherScoreSubNotList
){
this
.
otherScoreSubNotList
=
otherScoreSubNotList
;
return
this
;
}
/**
* 设置 备注
* @param remark
*/
public
StaffPerformStatQuery
remark
(
String
remark
){
setRemark
(
remark
);
return
this
;
}
/**
* 设置 其它绩效指标扣减分数
* @param otherScoreSubNot
List
* 设置 备注
* @param remark
List
*/
public
StaffPerformStatQuery
otherScoreSubNotList
(
List
<
BigDecimal
>
otherScoreSubNot
List
){
this
.
otherScoreSubNotList
=
otherScoreSubNot
List
;
public
StaffPerformStatQuery
remarkList
(
List
<
String
>
remark
List
){
this
.
remarkList
=
remark
List
;
return
this
;
}
/**
* 设置 日
* @param day
* 设置 年
* @param year
*/
public
StaffPerformStatQuery
day
(
Integer
day
){
setDay
(
day
);
public
StaffPerformStatQuery
year
(
Integer
year
){
setYear
(
year
);
return
this
;
}
/**
* 设置 开始 日
* @param day
Start
* 设置 开始 年
* @param year
Start
*/
public
StaffPerformStatQuery
dayStart
(
Integer
day
Start
){
this
.
dayStart
=
day
Start
;
public
StaffPerformStatQuery
yearStart
(
Integer
year
Start
){
this
.
yearStart
=
year
Start
;
return
this
;
}
/**
* 设置 结束 日
* @param day
End
* 设置 结束 年
* @param year
End
*/
public
StaffPerformStatQuery
dayEnd
(
Integer
day
End
){
this
.
dayEnd
=
day
End
;
public
StaffPerformStatQuery
yearEnd
(
Integer
year
End
){
this
.
yearEnd
=
year
End
;
return
this
;
}
/**
* 设置 增加 日
* @param day
Increment
* 设置 增加 年
* @param year
Increment
*/
public
StaffPerformStatQuery
dayIncrement
(
Integer
day
Increment
){
this
.
dayIncrement
=
day
Increment
;
public
StaffPerformStatQuery
yearIncrement
(
Integer
year
Increment
){
this
.
yearIncrement
=
year
Increment
;
return
this
;
}
/**
* 设置 日
* @param day
List
* 设置 年
* @param year
List
*/
public
StaffPerformStatQuery
dayList
(
List
<
Integer
>
day
List
){
this
.
dayList
=
day
List
;
public
StaffPerformStatQuery
yearList
(
List
<
Integer
>
year
List
){
this
.
yearList
=
year
List
;
return
this
;
}
/**
* 设置 日
* @param day
NotList
* 设置 年
* @param year
NotList
*/
public
StaffPerformStatQuery
dayNotList
(
List
<
Integer
>
day
NotList
){
this
.
dayNotList
=
day
NotList
;
public
StaffPerformStatQuery
yearNotList
(
List
<
Integer
>
year
NotList
){
this
.
yearNotList
=
year
NotList
;
return
this
;
}
/**
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
* 设置 月
* @param month
*/
public
StaffPerformStatQuery
totalAddScore
(
BigDecimal
totalAddScore
){
setTotalAddScore
(
totalAddScore
);
public
StaffPerformStatQuery
month
(
Integer
month
){
setMonth
(
month
);
return
this
;
}
/**
* 设置 开始 员工绩效加分总分数汇总
* @param totalAddScore
Start
* 设置 开始 月
* @param month
Start
*/
public
StaffPerformStatQuery
totalAddScoreStart
(
BigDecimal
totalAddScore
Start
){
this
.
totalAddScoreStart
=
totalAddScore
Start
;
public
StaffPerformStatQuery
monthStart
(
Integer
month
Start
){
this
.
monthStart
=
month
Start
;
return
this
;
}
/**
* 设置 结束 员工绩效加分总分数汇总
* @param totalAddScore
End
* 设置 结束 月
* @param month
End
*/
public
StaffPerformStatQuery
totalAddScoreEnd
(
BigDecimal
totalAddScore
End
){
this
.
totalAddScoreEnd
=
totalAddScore
End
;
public
StaffPerformStatQuery
monthEnd
(
Integer
month
End
){
this
.
monthEnd
=
month
End
;
return
this
;
}
/**
* 设置 增加 员工绩效加分总分数汇总
* @param totalAddScore
Increment
* 设置 增加 月
* @param month
Increment
*/
public
StaffPerformStatQuery
totalAddScoreIncrement
(
BigDecimal
totalAddScore
Increment
){
this
.
totalAddScoreIncrement
=
totalAddScore
Increment
;
public
StaffPerformStatQuery
monthIncrement
(
Integer
month
Increment
){
this
.
monthIncrement
=
month
Increment
;
return
this
;
}
/**
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
List
* 设置 月
* @param month
List
*/
public
StaffPerformStatQuery
totalAddScoreList
(
List
<
BigDecimal
>
totalAddScore
List
){
this
.
totalAddScoreList
=
totalAddScore
List
;
public
StaffPerformStatQuery
monthList
(
List
<
Integer
>
month
List
){
this
.
monthList
=
month
List
;
return
this
;
}
/**
* 设置 员工绩效加分总分数汇总
* @param totalAddScore
NotList
* 设置 月
* @param month
NotList
*/
public
StaffPerformStatQuery
totalAddScoreNotList
(
List
<
BigDecimal
>
totalAddScore
NotList
){
this
.
totalAddScoreNotList
=
totalAddScore
NotList
;
public
StaffPerformStatQuery
monthNotList
(
List
<
Integer
>
month
NotList
){
this
.
monthNotList
=
month
NotList
;
return
this
;
}
/**
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
* 设置 日
* @param day
*/
public
StaffPerformStatQuery
totalSubScore
(
BigDecimal
totalSubScore
){
setTotalSubScore
(
totalSubScore
);
public
StaffPerformStatQuery
day
(
Integer
day
){
setDay
(
day
);
return
this
;
}
/**
* 设置 开始 员工绩效减分总分数汇总
* @param totalSubScore
Start
* 设置 开始 日
* @param day
Start
*/
public
StaffPerformStatQuery
totalSubScoreStart
(
BigDecimal
totalSubScore
Start
){
this
.
totalSubScoreStart
=
totalSubScore
Start
;
public
StaffPerformStatQuery
dayStart
(
Integer
day
Start
){
this
.
dayStart
=
day
Start
;
return
this
;
}
/**
* 设置 结束 员工绩效减分总分数汇总
* @param totalSubScore
End
* 设置 结束 日
* @param day
End
*/
public
StaffPerformStatQuery
totalSubScoreEnd
(
BigDecimal
totalSubScore
End
){
this
.
totalSubScoreEnd
=
totalSubScore
End
;
public
StaffPerformStatQuery
dayEnd
(
Integer
day
End
){
this
.
dayEnd
=
day
End
;
return
this
;
}
/**
* 设置 增加 员工绩效减分总分数汇总
* @param totalSubScore
Increment
* 设置 增加 日
* @param day
Increment
*/
public
StaffPerformStatQuery
totalSubScoreIncrement
(
BigDecimal
totalSubScore
Increment
){
this
.
totalSubScoreIncrement
=
totalSubScore
Increment
;
public
StaffPerformStatQuery
dayIncrement
(
Integer
day
Increment
){
this
.
dayIncrement
=
day
Increment
;
return
this
;
}
/**
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
List
* 设置 日
* @param day
List
*/
public
StaffPerformStatQuery
totalSubScoreList
(
List
<
BigDecimal
>
totalSubScore
List
){
this
.
totalSubScoreList
=
totalSubScore
List
;
public
StaffPerformStatQuery
dayList
(
List
<
Integer
>
day
List
){
this
.
dayList
=
day
List
;
return
this
;
}
/**
* 设置 员工绩效减分总分数汇总
* @param totalSubScore
NotList
* 设置 日
* @param day
NotList
*/
public
StaffPerformStatQuery
totalSubScoreNotList
(
List
<
BigDecimal
>
totalSubScore
NotList
){
this
.
totalSubScoreNotList
=
totalSubScore
NotList
;
public
StaffPerformStatQuery
dayNotList
(
List
<
Integer
>
day
NotList
){
this
.
dayNotList
=
day
NotList
;
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAd
d
* 设置 创建人id
* @param createUserI
d
*/
public
StaffPerformStatQuery
c
omplainScoreAdd
(
BigDecimal
complainScoreAd
d
){
setComplainScoreAdd
(
complainScoreAd
d
);
public
StaffPerformStatQuery
c
reateUserId
(
Long
createUserI
d
){
setCreateUserId
(
createUserI
d
);
return
this
;
}
/**
* 设置 开始 投诉绩效指标增加分数
* @param complainScoreAd
dStart
* 设置 开始 创建人id
* @param createUserI
dStart
*/
public
StaffPerformStatQuery
c
omplainScoreAddStart
(
BigDecimal
complainScoreAd
dStart
){
this
.
complainScoreAddStart
=
complainScoreAd
dStart
;
public
StaffPerformStatQuery
c
reateUserIdStart
(
Long
createUserI
dStart
){
this
.
createUserIdStart
=
createUserI
dStart
;
return
this
;
}
/**
* 设置 结束 投诉绩效指标增加分数
* @param complainScoreAd
dEnd
* 设置 结束 创建人id
* @param createUserI
dEnd
*/
public
StaffPerformStatQuery
c
omplainScoreAddEnd
(
BigDecimal
complainScoreAd
dEnd
){
this
.
complainScoreAddEnd
=
complainScoreAd
dEnd
;
public
StaffPerformStatQuery
c
reateUserIdEnd
(
Long
createUserI
dEnd
){
this
.
createUserIdEnd
=
createUserI
dEnd
;
return
this
;
}
/**
* 设置 增加 投诉绩效指标增加分数
* @param complainScoreAd
dIncrement
* 设置 增加 创建人id
* @param createUserI
dIncrement
*/
public
StaffPerformStatQuery
c
omplainScoreAddIncrement
(
BigDecimal
complainScoreAd
dIncrement
){
this
.
complainScoreAddIncrement
=
complainScoreAd
dIncrement
;
public
StaffPerformStatQuery
c
reateUserIdIncrement
(
Long
createUserI
dIncrement
){
this
.
createUserIdIncrement
=
createUserI
dIncrement
;
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAd
dList
* 设置 创建人id
* @param createUserI
dList
*/
public
StaffPerformStatQuery
c
omplainScoreAddList
(
List
<
BigDecimal
>
complainScoreAd
dList
){
this
.
c
omplainScoreAddList
=
complainScoreAd
dList
;
public
StaffPerformStatQuery
c
reateUserIdList
(
List
<
Long
>
createUserI
dList
){
this
.
c
reateUserIdList
=
createUserI
dList
;
return
this
;
}
/**
* 设置 投诉绩效指标增加分数
* @param complainScoreAd
dNotList
* 设置 创建人id
* @param createUserI
dNotList
*/
public
StaffPerformStatQuery
complainScoreAddNotList
(
List
<
BigDecimal
>
complainScoreAd
dNotList
){
this
.
c
omplainScoreAddNotList
=
complainScoreAd
dNotList
;
public
StaffPerformStatQuery
createUserIdNotList
(
List
<
Long
>
createUserI
dNotList
){
this
.
c
reateUserIdNotList
=
createUserI
dNotList
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
* 设置 更新人id
* @param updateUserId
*/
public
StaffPerformStatQuery
complainScoreSub
(
BigDecimal
complainScoreSub
){
setComplainScoreSub
(
complainScoreSub
);
public
StaffPerformStatQuery
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
return
this
;
}
/**
* 设置 开始 投诉绩效指标扣减分数
* @param complainScoreSub
Start
* 设置 开始 更新人id
* @param updateUserId
Start
*/
public
StaffPerformStatQuery
complainScoreSubStart
(
BigDecimal
complainScoreSub
Start
){
this
.
complainScoreSubStart
=
complainScoreSub
Start
;
public
StaffPerformStatQuery
updateUserIdStart
(
Long
updateUserId
Start
){
this
.
updateUserIdStart
=
updateUserId
Start
;
return
this
;
}
/**
* 设置 结束 投诉绩效指标扣减分数
* @param complainScoreSub
End
* 设置 结束 更新人id
* @param updateUserId
End
*/
public
StaffPerformStatQuery
complainScoreSubEnd
(
BigDecimal
complainScoreSub
End
){
this
.
complainScoreSubEnd
=
complainScoreSub
End
;
public
StaffPerformStatQuery
updateUserIdEnd
(
Long
updateUserId
End
){
this
.
updateUserIdEnd
=
updateUserId
End
;
return
this
;
}
/**
* 设置 增加 投诉绩效指标扣减分数
* @param complainScoreSub
Increment
* 设置 增加 更新人id
* @param updateUserId
Increment
*/
public
StaffPerformStatQuery
complainScoreSubIncrement
(
BigDecimal
complainScoreSub
Increment
){
this
.
complainScoreSubIncrement
=
complainScoreSub
Increment
;
public
StaffPerformStatQuery
updateUserIdIncrement
(
Long
updateUserId
Increment
){
this
.
updateUserIdIncrement
=
updateUserId
Increment
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
List
* 设置 更新人id
* @param updateUserId
List
*/
public
StaffPerformStatQuery
complainScoreSubList
(
List
<
BigDecimal
>
complainScoreSub
List
){
this
.
complainScoreSubList
=
complainScoreSub
List
;
public
StaffPerformStatQuery
updateUserIdList
(
List
<
Long
>
updateUserId
List
){
this
.
updateUserIdList
=
updateUserId
List
;
return
this
;
}
/**
* 设置 投诉绩效指标扣减分数
* @param complainScoreSub
NotList
* 设置 更新人id
* @param updateUserId
NotList
*/
public
StaffPerformStatQuery
complainScoreSubNotList
(
List
<
BigDecimal
>
complainScoreSub
NotList
){
this
.
complainScoreSubNotList
=
complainScoreSub
NotList
;
public
StaffPerformStatQuery
updateUserIdNotList
(
List
<
Long
>
updateUserId
NotList
){
this
.
updateUserIdNotList
=
updateUserId
NotList
;
return
this
;
}
...
...
attendance-performance-manager/src/main/resources/sqlmap/module/staff/StaffPerformStatMapper.xml
View file @
ad46a442
This source diff could not be displayed because it is too large. You can
view the blob
instead.
db/add.sql
View file @
ad46a442
...
...
@@ -503,3 +503,40 @@ CREATE TABLE mortals_xhx_window_owner_detail(
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'窗口负责人详细'
;
-- ----------------------------
-- 员工绩效统计表
-- ----------------------------
DROP
TABLE
IF
EXISTS
`mortals_xhx_staff_perform_stat`
;
CREATE
TABLE
mortals_xhx_staff_perform_stat
(
`id`
bigint
(
20
)
NOT
NULL
AUTO_INCREMENT
COMMENT
'主键ID,主键,自增长'
,
`staffId`
bigint
(
20
)
DEFAULT
'0'
COMMENT
'部门id号'
,
`staffName`
varchar
(
64
)
COMMENT
'部门名称'
,
`totalScore`
decimal
(
10
,
2
)
NOT
NULL
COMMENT
'员工绩效总分数'
,
`totalAddScore`
decimal
(
10
,
2
)
NOT
NULL
COMMENT
'员工绩效加分总分数汇总'
,
`totalSubScore`
decimal
(
10
,
2
)
NOT
NULL
COMMENT
'员工绩效减分总分数汇总'
,
`attendScoreAdd`
decimal
(
10
,
2
)
COMMENT
'考勤绩效指标增加分数'
,
`attendScoreSub`
decimal
(
10
,
2
)
COMMENT
'考勤绩效指标扣减分数'
,
`assessScoreAdd`
decimal
(
10
,
2
)
COMMENT
'评价绩效指标增加分数'
,
`assessScoreSub`
decimal
(
10
,
2
)
COMMENT
'评价绩效指标扣减分数'
,
`complainScoreAdd`
decimal
(
10
,
2
)
COMMENT
'投诉绩效指标增加分数'
,
`complainScoreSub`
decimal
(
10
,
2
)
COMMENT
'投诉绩效指标扣减分数'
,
`workScoreAdd`
decimal
(
10
,
2
)
COMMENT
'办件绩效指标增加分数'
,
`workScoreSub`
decimal
(
10
,
2
)
COMMENT
'办件绩效指标扣减分数'
,
`effectScoreAdd`
decimal
(
10
,
2
)
COMMENT
'效能绩效指标增加分数'
,
`effectScoreSub`
decimal
(
10
,
2
)
COMMENT
'效能绩效指标扣减分数'
,
`otherScoreAdd`
decimal
(
10
,
2
)
COMMENT
'其它绩效指标增加分数'
,
`otherScoreSub`
decimal
(
10
,
2
)
COMMENT
'其它绩效指标扣减分数'
,
`remark`
varchar
(
255
)
COMMENT
'备注'
,
`year`
int
(
9
)
NOT
NULL
COMMENT
'年'
,
`month`
tinyint
(
2
)
NOT
NULL
COMMENT
'月'
,
`day`
tinyint
(
2
)
NOT
NULL
COMMENT
'日'
,
`createTime`
datetime
COMMENT
'创建时间'
,
`createUserId`
bigint
(
20
)
COMMENT
'创建人id'
,
`updateTime`
datetime
COMMENT
'更新时间'
,
`updateUserId`
bigint
(
20
)
COMMENT
'更新人id'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'员工绩效统计'
;
doc/考勤绩效管理系统.docx
View file @
ad46a442
No preview for this file type
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