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
7a16b11e
Commit
7a16b11e
authored
Jul 18, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改考勤汇总
parent
938ee527
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2067 additions
and
1962 deletions
+2067
-1962
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
...als/xhx/module/staff/model/StaffPerformSummaryEntity.java
+7
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryQuery.java
...tals/xhx/module/staff/model/StaffPerformSummaryQuery.java
+1157
-1101
attendance-performance-manager/src/main/resources/sqlmap/module/staff/StaffPerformSummaryMapper.xml
...sources/sqlmap/module/staff/StaffPerformSummaryMapper.xml
+901
-861
db/add.sql
db/add.sql
+2
-0
doc/考勤绩效管理系统.docx
doc/考勤绩效管理系统.docx
+0
-0
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
View file @
7a16b11e
...
@@ -24,6 +24,11 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
...
@@ -24,6 +24,11 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
* 人员id
* 人员id
*/
*/
private
Long
staffId
;
private
Long
staffId
;
/**
* 所属中心
*/
@Excel
(
name
=
"所属中心"
)
private
String
belongCenter
;
/**
/**
* 工号
* 工号
*/
*/
...
@@ -146,5 +151,7 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
...
@@ -146,5 +151,7 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
this
.
year
=
DateUtil
.
year
(
new
Date
());
this
.
year
=
DateUtil
.
year
(
new
Date
());
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
belongCenter
=
"宜宾市民中心"
;
}
}
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryQuery.java
View file @
7a16b11e
...
@@ -4,11 +4,11 @@ import java.math.BigDecimal;
...
@@ -4,11 +4,11 @@ import java.math.BigDecimal;
import
java.util.List
;
import
java.util.List
;
import
com.mortals.xhx.module.staff.model.StaffPerformSummaryEntity
;
import
com.mortals.xhx.module.staff.model.StaffPerformSummaryEntity
;
/**
/**
* 员工绩效统计查询对象
* 员工绩效统计查询对象
*
*
* @author zxfei
* @author zxfei
* @date 2023-07-14
* @date 2023-07-18
*/
*/
public
class
StaffPerformSummaryQuery
extends
StaffPerformSummaryEntity
{
public
class
StaffPerformSummaryQuery
extends
StaffPerformSummaryEntity
{
/** 开始 主键ID,主键,自增长 */
/** 开始 主键ID,主键,自增长 */
private
Long
idStart
;
private
Long
idStart
;
...
@@ -267,6 +267,11 @@ public class StaffPerformSummaryQuery extends StaffPerformSummaryEntity {
...
@@ -267,6 +267,11 @@ public class StaffPerformSummaryQuery extends StaffPerformSummaryEntity {
/** 更新人id排除列表 */
/** 更新人id排除列表 */
private
List
<
Long
>
updateUserIdNotList
;
private
List
<
Long
>
updateUserIdNotList
;
/** 所属中心 */
private
List
<
String
>
belongCenterList
;
/** 所属中心排除列表 */
private
List
<
String
>
belongCenterNotList
;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private
List
<
StaffPerformSummaryQuery
>
orConditionList
;
private
List
<
StaffPerformSummaryQuery
>
orConditionList
;
...
@@ -276,2328 +281,2379 @@ public class StaffPerformSummaryQuery extends StaffPerformSummaryEntity {
...
@@ -276,2328 +281,2379 @@ public class StaffPerformSummaryQuery extends StaffPerformSummaryEntity {
public
StaffPerformSummaryQuery
(){}
public
StaffPerformSummaryQuery
(){}
/**
/**
* 获取 开始 主键ID,主键,自增长
* 获取 开始 主键ID,主键,自增长
* @return idStart
* @return idStart
*/
*/
public
Long
getIdStart
(){
public
Long
getIdStart
(){
return
this
.
idStart
;
return
this
.
idStart
;
}
}
/**
/**
* 设置 开始 主键ID,主键,自增长
* 设置 开始 主键ID,主键,自增长
* @param idStart
* @param idStart
*/
*/
public
void
setIdStart
(
Long
idStart
){
public
void
setIdStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
this
.
idStart
=
idStart
;
}
}
/**
/**
* 获取 结束 主键ID,主键,自增长
* 获取 结束 主键ID,主键,自增长
* @return $idEnd
* @return $idEnd
*/
*/
public
Long
getIdEnd
(){
public
Long
getIdEnd
(){
return
this
.
idEnd
;
return
this
.
idEnd
;
}
}
/**
/**
* 设置 结束 主键ID,主键,自增长
* 设置 结束 主键ID,主键,自增长
* @param idEnd
* @param idEnd
*/
*/
public
void
setIdEnd
(
Long
idEnd
){
public
void
setIdEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
this
.
idEnd
=
idEnd
;
}
}
/**
/**
* 获取 增加 主键ID,主键,自增长
* 获取 增加 主键ID,主键,自增长
* @return idIncrement
* @return idIncrement
*/
*/
public
Long
getIdIncrement
(){
public
Long
getIdIncrement
(){
return
this
.
idIncrement
;
return
this
.
idIncrement
;
}
}
/**
/**
* 设置 增加 主键ID,主键,自增长
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
* @param idIncrement
*/
*/
public
void
setIdIncrement
(
Long
idIncrement
){
public
void
setIdIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
this
.
idIncrement
=
idIncrement
;
}
}
/**
/**
* 获取 主键ID,主键,自增长
* 获取 主键ID,主键,自增长
* @return idList
* @return idList
*/
*/
public
List
<
Long
>
getIdList
(){
public
List
<
Long
>
getIdList
(){
return
this
.
idList
;
return
this
.
idList
;
}
}
/**
/**
* 设置 主键ID,主键,自增长
* 设置 主键ID,主键,自增长
* @param idList
* @param idList
*/
*/
public
void
setIdList
(
List
<
Long
>
idList
){
public
void
setIdList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
this
.
idList
=
idList
;
}
}
/**
/**
* 获取 主键ID,主键,自增长
* 获取 主键ID,主键,自增长
* @return idNotList
* @return idNotList
*/
*/
public
List
<
Long
>
getIdNotList
(){
public
List
<
Long
>
getIdNotList
(){
return
this
.
idNotList
;
return
this
.
idNotList
;
}
}
/**
/**
* 设置 主键ID,主键,自增长
* 设置 主键ID,主键,自增长
* @param idNotList
* @param idNotList
*/
*/
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
this
.
idNotList
=
idNotList
;
}
}
/**
/**
* 获取 开始 人员id
* 获取 开始 人员id
* @return staffIdStart
* @return staffIdStart
*/
*/
public
Long
getStaffIdStart
(){
public
Long
getStaffIdStart
(){
return
this
.
staffIdStart
;
return
this
.
staffIdStart
;
}
}
/**
/**
* 设置 开始 人员id
* 设置 开始 人员id
* @param staffIdStart
* @param staffIdStart
*/
*/
public
void
setStaffIdStart
(
Long
staffIdStart
){
public
void
setStaffIdStart
(
Long
staffIdStart
){
this
.
staffIdStart
=
staffIdStart
;
this
.
staffIdStart
=
staffIdStart
;
}
}
/**
/**
* 获取 结束 人员id
* 获取 结束 人员id
* @return $staffIdEnd
* @return $staffIdEnd
*/
*/
public
Long
getStaffIdEnd
(){
public
Long
getStaffIdEnd
(){
return
this
.
staffIdEnd
;
return
this
.
staffIdEnd
;
}
}
/**
/**
* 设置 结束 人员id
* 设置 结束 人员id
* @param staffIdEnd
* @param staffIdEnd
*/
*/
public
void
setStaffIdEnd
(
Long
staffIdEnd
){
public
void
setStaffIdEnd
(
Long
staffIdEnd
){
this
.
staffIdEnd
=
staffIdEnd
;
this
.
staffIdEnd
=
staffIdEnd
;
}
}
/**
/**
* 获取 增加 人员id
* 获取 增加 人员id
* @return staffIdIncrement
* @return staffIdIncrement
*/
*/
public
Long
getStaffIdIncrement
(){
public
Long
getStaffIdIncrement
(){
return
this
.
staffIdIncrement
;
return
this
.
staffIdIncrement
;
}
}
/**
/**
* 设置 增加 人员id
* 设置 增加 人员id
* @param staffIdIncrement
* @param staffIdIncrement
*/
*/
public
void
setStaffIdIncrement
(
Long
staffIdIncrement
){
public
void
setStaffIdIncrement
(
Long
staffIdIncrement
){
this
.
staffIdIncrement
=
staffIdIncrement
;
this
.
staffIdIncrement
=
staffIdIncrement
;
}
}
/**
/**
* 获取 人员id
* 获取 人员id
* @return staffIdList
* @return staffIdList
*/
*/
public
List
<
Long
>
getStaffIdList
(){
public
List
<
Long
>
getStaffIdList
(){
return
this
.
staffIdList
;
return
this
.
staffIdList
;
}
}
/**
/**
* 设置 人员id
* 设置 人员id
* @param staffIdList
* @param staffIdList
*/
*/
public
void
setStaffIdList
(
List
<
Long
>
staffIdList
){
public
void
setStaffIdList
(
List
<
Long
>
staffIdList
){
this
.
staffIdList
=
staffIdList
;
this
.
staffIdList
=
staffIdList
;
}
}
/**
/**
* 获取 人员id
* 获取 人员id
* @return staffIdNotList
* @return staffIdNotList
*/
*/
public
List
<
Long
>
getStaffIdNotList
(){
public
List
<
Long
>
getStaffIdNotList
(){
return
this
.
staffIdNotList
;
return
this
.
staffIdNotList
;
}
}
/**
/**
* 设置 人员id
* 设置 人员id
* @param staffIdNotList
* @param staffIdNotList
*/
*/
public
void
setStaffIdNotList
(
List
<
Long
>
staffIdNotList
){
public
void
setStaffIdNotList
(
List
<
Long
>
staffIdNotList
){
this
.
staffIdNotList
=
staffIdNotList
;
this
.
staffIdNotList
=
staffIdNotList
;
}
}
/**
/**
* 获取 工号
* 获取 工号
* @return workNumList
* @return workNumList
*/
*/
public
List
<
String
>
getWorkNumList
(){
public
List
<
String
>
getWorkNumList
(){
return
this
.
workNumList
;
return
this
.
workNumList
;
}
}
/**
/**
* 设置 工号
* 设置 工号
* @param workNumList
* @param workNumList
*/
*/
public
void
setWorkNumList
(
List
<
String
>
workNumList
){
public
void
setWorkNumList
(
List
<
String
>
workNumList
){
this
.
workNumList
=
workNumList
;
this
.
workNumList
=
workNumList
;
}
}
/**
/**
* 获取 工号
* 获取 工号
* @return workNumNotList
* @return workNumNotList
*/
*/
public
List
<
String
>
getWorkNumNotList
(){
public
List
<
String
>
getWorkNumNotList
(){
return
this
.
workNumNotList
;
return
this
.
workNumNotList
;
}
}
/**
/**
* 设置 工号
* 设置 工号
* @param workNumNotList
* @param workNumNotList
*/
*/
public
void
setWorkNumNotList
(
List
<
String
>
workNumNotList
){
public
void
setWorkNumNotList
(
List
<
String
>
workNumNotList
){
this
.
workNumNotList
=
workNumNotList
;
this
.
workNumNotList
=
workNumNotList
;
}
}
/**
/**
* 获取 人员名称
* 获取 人员名称
* @return staffNameList
* @return staffNameList
*/
*/
public
List
<
String
>
getStaffNameList
(){
public
List
<
String
>
getStaffNameList
(){
return
this
.
staffNameList
;
return
this
.
staffNameList
;
}
}
/**
/**
* 设置 人员名称
* 设置 人员名称
* @param staffNameList
* @param staffNameList
*/
*/
public
void
setStaffNameList
(
List
<
String
>
staffNameList
){
public
void
setStaffNameList
(
List
<
String
>
staffNameList
){
this
.
staffNameList
=
staffNameList
;
this
.
staffNameList
=
staffNameList
;
}
}
/**
/**
* 获取 人员名称
* 获取 人员名称
* @return staffNameNotList
* @return staffNameNotList
*/
*/
public
List
<
String
>
getStaffNameNotList
(){
public
List
<
String
>
getStaffNameNotList
(){
return
this
.
staffNameNotList
;
return
this
.
staffNameNotList
;
}
}
/**
/**
* 设置 人员名称
* 设置 人员名称
* @param staffNameNotList
* @param staffNameNotList
*/
*/
public
void
setStaffNameNotList
(
List
<
String
>
staffNameNotList
){
public
void
setStaffNameNotList
(
List
<
String
>
staffNameNotList
){
this
.
staffNameNotList
=
staffNameNotList
;
this
.
staffNameNotList
=
staffNameNotList
;
}
}
/**
/**
* 获取 开始 部门id号
* 获取 开始 部门id号
* @return deptIdStart
* @return deptIdStart
*/
*/
public
Long
getDeptIdStart
(){
public
Long
getDeptIdStart
(){
return
this
.
deptIdStart
;
return
this
.
deptIdStart
;
}
}
/**
/**
* 设置 开始 部门id号
* 设置 开始 部门id号
* @param deptIdStart
* @param deptIdStart
*/
*/
public
void
setDeptIdStart
(
Long
deptIdStart
){
public
void
setDeptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
this
.
deptIdStart
=
deptIdStart
;
}
}
/**
/**
* 获取 结束 部门id号
* 获取 结束 部门id号
* @return $deptIdEnd
* @return $deptIdEnd
*/
*/
public
Long
getDeptIdEnd
(){
public
Long
getDeptIdEnd
(){
return
this
.
deptIdEnd
;
return
this
.
deptIdEnd
;
}
}
/**
/**
* 设置 结束 部门id号
* 设置 结束 部门id号
* @param deptIdEnd
* @param deptIdEnd
*/
*/
public
void
setDeptIdEnd
(
Long
deptIdEnd
){
public
void
setDeptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
this
.
deptIdEnd
=
deptIdEnd
;
}
}
/**
/**
* 获取 增加 部门id号
* 获取 增加 部门id号
* @return deptIdIncrement
* @return deptIdIncrement
*/
*/
public
Long
getDeptIdIncrement
(){
public
Long
getDeptIdIncrement
(){
return
this
.
deptIdIncrement
;
return
this
.
deptIdIncrement
;
}
}
/**
/**
* 设置 增加 部门id号
* 设置 增加 部门id号
* @param deptIdIncrement
* @param deptIdIncrement
*/
*/
public
void
setDeptIdIncrement
(
Long
deptIdIncrement
){
public
void
setDeptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
this
.
deptIdIncrement
=
deptIdIncrement
;
}
}
/**
/**
* 获取 部门id号
* 获取 部门id号
* @return deptIdList
* @return deptIdList
*/
*/
public
List
<
Long
>
getDeptIdList
(){
public
List
<
Long
>
getDeptIdList
(){
return
this
.
deptIdList
;
return
this
.
deptIdList
;
}
}
/**
/**
* 设置 部门id号
* 设置 部门id号
* @param deptIdList
* @param deptIdList
*/
*/
public
void
setDeptIdList
(
List
<
Long
>
deptIdList
){
public
void
setDeptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
this
.
deptIdList
=
deptIdList
;
}
}
/**
/**
* 获取 部门id号
* 获取 部门id号
* @return deptIdNotList
* @return deptIdNotList
*/
*/
public
List
<
Long
>
getDeptIdNotList
(){
public
List
<
Long
>
getDeptIdNotList
(){
return
this
.
deptIdNotList
;
return
this
.
deptIdNotList
;
}
}
/**
/**
* 设置 部门id号
* 设置 部门id号
* @param deptIdNotList
* @param deptIdNotList
*/
*/
public
void
setDeptIdNotList
(
List
<
Long
>
deptIdNotList
){
public
void
setDeptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
this
.
deptIdNotList
=
deptIdNotList
;
}
}
/**
/**
* 获取 部门名称
* 获取 部门名称
* @return deptNameList
* @return deptNameList
*/
*/
public
List
<
String
>
getDeptNameList
(){
public
List
<
String
>
getDeptNameList
(){
return
this
.
deptNameList
;
return
this
.
deptNameList
;
}
}
/**
/**
* 设置 部门名称
* 设置 部门名称
* @param deptNameList
* @param deptNameList
*/
*/
public
void
setDeptNameList
(
List
<
String
>
deptNameList
){
public
void
setDeptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
this
.
deptNameList
=
deptNameList
;
}
}
/**
/**
* 获取 部门名称
* 获取 部门名称
* @return deptNameNotList
* @return deptNameNotList
*/
*/
public
List
<
String
>
getDeptNameNotList
(){
public
List
<
String
>
getDeptNameNotList
(){
return
this
.
deptNameNotList
;
return
this
.
deptNameNotList
;
}
}
/**
/**
* 设置 部门名称
* 设置 部门名称
* @param deptNameNotList
* @param deptNameNotList
*/
*/
public
void
setDeptNameNotList
(
List
<
String
>
deptNameNotList
){
public
void
setDeptNameNotList
(
List
<
String
>
deptNameNotList
){
this
.
deptNameNotList
=
deptNameNotList
;
this
.
deptNameNotList
=
deptNameNotList
;
}
}
/**
/**
* 获取 开始 考勤绩效指标分数
* 获取 开始 考勤绩效指标分数
* @return attendScoreStart
* @return attendScoreStart
*/
*/
public
BigDecimal
getAttendScoreStart
(){
public
BigDecimal
getAttendScoreStart
(){
return
this
.
attendScoreStart
;
return
this
.
attendScoreStart
;
}
}
/**
/**
* 设置 开始 考勤绩效指标分数
* 设置 开始 考勤绩效指标分数
* @param attendScoreStart
* @param attendScoreStart
*/
*/
public
void
setAttendScoreStart
(
BigDecimal
attendScoreStart
){
public
void
setAttendScoreStart
(
BigDecimal
attendScoreStart
){
this
.
attendScoreStart
=
attendScoreStart
;
this
.
attendScoreStart
=
attendScoreStart
;
}
}
/**
/**
* 获取 结束 考勤绩效指标分数
* 获取 结束 考勤绩效指标分数
* @return $attendScoreEnd
* @return $attendScoreEnd
*/
*/
public
BigDecimal
getAttendScoreEnd
(){
public
BigDecimal
getAttendScoreEnd
(){
return
this
.
attendScoreEnd
;
return
this
.
attendScoreEnd
;
}
}
/**
/**
* 设置 结束 考勤绩效指标分数
* 设置 结束 考勤绩效指标分数
* @param attendScoreEnd
* @param attendScoreEnd
*/
*/
public
void
setAttendScoreEnd
(
BigDecimal
attendScoreEnd
){
public
void
setAttendScoreEnd
(
BigDecimal
attendScoreEnd
){
this
.
attendScoreEnd
=
attendScoreEnd
;
this
.
attendScoreEnd
=
attendScoreEnd
;
}
}
/**
/**
* 获取 增加 考勤绩效指标分数
* 获取 增加 考勤绩效指标分数
* @return attendScoreIncrement
* @return attendScoreIncrement
*/
*/
public
BigDecimal
getAttendScoreIncrement
(){
public
BigDecimal
getAttendScoreIncrement
(){
return
this
.
attendScoreIncrement
;
return
this
.
attendScoreIncrement
;
}
}
/**
/**
* 设置 增加 考勤绩效指标分数
* 设置 增加 考勤绩效指标分数
* @param attendScoreIncrement
* @param attendScoreIncrement
*/
*/
public
void
setAttendScoreIncrement
(
BigDecimal
attendScoreIncrement
){
public
void
setAttendScoreIncrement
(
BigDecimal
attendScoreIncrement
){
this
.
attendScoreIncrement
=
attendScoreIncrement
;
this
.
attendScoreIncrement
=
attendScoreIncrement
;
}
}
/**
/**
* 获取 考勤绩效指标分数
* 获取 考勤绩效指标分数
* @return attendScoreList
* @return attendScoreList
*/
*/
public
List
<
BigDecimal
>
getAttendScoreList
(){
public
List
<
BigDecimal
>
getAttendScoreList
(){
return
this
.
attendScoreList
;
return
this
.
attendScoreList
;
}
}
/**
/**
* 设置 考勤绩效指标分数
* 设置 考勤绩效指标分数
* @param attendScoreList
* @param attendScoreList
*/
*/
public
void
setAttendScoreList
(
List
<
BigDecimal
>
attendScoreList
){
public
void
setAttendScoreList
(
List
<
BigDecimal
>
attendScoreList
){
this
.
attendScoreList
=
attendScoreList
;
this
.
attendScoreList
=
attendScoreList
;
}
}
/**
/**
* 获取 考勤绩效指标分数
* 获取 考勤绩效指标分数
* @return attendScoreNotList
* @return attendScoreNotList
*/
*/
public
List
<
BigDecimal
>
getAttendScoreNotList
(){
public
List
<
BigDecimal
>
getAttendScoreNotList
(){
return
this
.
attendScoreNotList
;
return
this
.
attendScoreNotList
;
}
}
/**
/**
* 设置 考勤绩效指标分数
* 设置 考勤绩效指标分数
* @param attendScoreNotList
* @param attendScoreNotList
*/
*/
public
void
setAttendScoreNotList
(
List
<
BigDecimal
>
attendScoreNotList
){
public
void
setAttendScoreNotList
(
List
<
BigDecimal
>
attendScoreNotList
){
this
.
attendScoreNotList
=
attendScoreNotList
;
this
.
attendScoreNotList
=
attendScoreNotList
;
}
}
/**
/**
* 获取 开始 评价绩效指标分数
* 获取 开始 评价绩效指标分数
* @return reviewScoreStart
* @return reviewScoreStart
*/
*/
public
BigDecimal
getReviewScoreStart
(){
public
BigDecimal
getReviewScoreStart
(){
return
this
.
reviewScoreStart
;
return
this
.
reviewScoreStart
;
}
}
/**
/**
* 设置 开始 评价绩效指标分数
* 设置 开始 评价绩效指标分数
* @param reviewScoreStart
* @param reviewScoreStart
*/
*/
public
void
setReviewScoreStart
(
BigDecimal
reviewScoreStart
){
public
void
setReviewScoreStart
(
BigDecimal
reviewScoreStart
){
this
.
reviewScoreStart
=
reviewScoreStart
;
this
.
reviewScoreStart
=
reviewScoreStart
;
}
}
/**
/**
* 获取 结束 评价绩效指标分数
* 获取 结束 评价绩效指标分数
* @return $reviewScoreEnd
* @return $reviewScoreEnd
*/
*/
public
BigDecimal
getReviewScoreEnd
(){
public
BigDecimal
getReviewScoreEnd
(){
return
this
.
reviewScoreEnd
;
return
this
.
reviewScoreEnd
;
}
}
/**
/**
* 设置 结束 评价绩效指标分数
* 设置 结束 评价绩效指标分数
* @param reviewScoreEnd
* @param reviewScoreEnd
*/
*/
public
void
setReviewScoreEnd
(
BigDecimal
reviewScoreEnd
){
public
void
setReviewScoreEnd
(
BigDecimal
reviewScoreEnd
){
this
.
reviewScoreEnd
=
reviewScoreEnd
;
this
.
reviewScoreEnd
=
reviewScoreEnd
;
}
}
/**
/**
* 获取 增加 评价绩效指标分数
* 获取 增加 评价绩效指标分数
* @return reviewScoreIncrement
* @return reviewScoreIncrement
*/
*/
public
BigDecimal
getReviewScoreIncrement
(){
public
BigDecimal
getReviewScoreIncrement
(){
return
this
.
reviewScoreIncrement
;
return
this
.
reviewScoreIncrement
;
}
}
/**
/**
* 设置 增加 评价绩效指标分数
* 设置 增加 评价绩效指标分数
* @param reviewScoreIncrement
* @param reviewScoreIncrement
*/
*/
public
void
setReviewScoreIncrement
(
BigDecimal
reviewScoreIncrement
){
public
void
setReviewScoreIncrement
(
BigDecimal
reviewScoreIncrement
){
this
.
reviewScoreIncrement
=
reviewScoreIncrement
;
this
.
reviewScoreIncrement
=
reviewScoreIncrement
;
}
}
/**
/**
* 获取 评价绩效指标分数
* 获取 评价绩效指标分数
* @return reviewScoreList
* @return reviewScoreList
*/
*/
public
List
<
BigDecimal
>
getReviewScoreList
(){
public
List
<
BigDecimal
>
getReviewScoreList
(){
return
this
.
reviewScoreList
;
return
this
.
reviewScoreList
;
}
}
/**
/**
* 设置 评价绩效指标分数
* 设置 评价绩效指标分数
* @param reviewScoreList
* @param reviewScoreList
*/
*/
public
void
setReviewScoreList
(
List
<
BigDecimal
>
reviewScoreList
){
public
void
setReviewScoreList
(
List
<
BigDecimal
>
reviewScoreList
){
this
.
reviewScoreList
=
reviewScoreList
;
this
.
reviewScoreList
=
reviewScoreList
;
}
}
/**
/**
* 获取 评价绩效指标分数
* 获取 评价绩效指标分数
* @return reviewScoreNotList
* @return reviewScoreNotList
*/
*/
public
List
<
BigDecimal
>
getReviewScoreNotList
(){
public
List
<
BigDecimal
>
getReviewScoreNotList
(){
return
this
.
reviewScoreNotList
;
return
this
.
reviewScoreNotList
;
}
}
/**
/**
* 设置 评价绩效指标分数
* 设置 评价绩效指标分数
* @param reviewScoreNotList
* @param reviewScoreNotList
*/
*/
public
void
setReviewScoreNotList
(
List
<
BigDecimal
>
reviewScoreNotList
){
public
void
setReviewScoreNotList
(
List
<
BigDecimal
>
reviewScoreNotList
){
this
.
reviewScoreNotList
=
reviewScoreNotList
;
this
.
reviewScoreNotList
=
reviewScoreNotList
;
}
}
/**
/**
* 获取 开始 投诉绩效指标分数
* 获取 开始 投诉绩效指标分数
* @return complainScoreStart
* @return complainScoreStart
*/
*/
public
BigDecimal
getComplainScoreStart
(){
public
BigDecimal
getComplainScoreStart
(){
return
this
.
complainScoreStart
;
return
this
.
complainScoreStart
;
}
}
/**
/**
* 设置 开始 投诉绩效指标分数
* 设置 开始 投诉绩效指标分数
* @param complainScoreStart
* @param complainScoreStart
*/
*/
public
void
setComplainScoreStart
(
BigDecimal
complainScoreStart
){
public
void
setComplainScoreStart
(
BigDecimal
complainScoreStart
){
this
.
complainScoreStart
=
complainScoreStart
;
this
.
complainScoreStart
=
complainScoreStart
;
}
}
/**
/**
* 获取 结束 投诉绩效指标分数
* 获取 结束 投诉绩效指标分数
* @return $complainScoreEnd
* @return $complainScoreEnd
*/
*/
public
BigDecimal
getComplainScoreEnd
(){
public
BigDecimal
getComplainScoreEnd
(){
return
this
.
complainScoreEnd
;
return
this
.
complainScoreEnd
;
}
}
/**
/**
* 设置 结束 投诉绩效指标分数
* 设置 结束 投诉绩效指标分数
* @param complainScoreEnd
* @param complainScoreEnd
*/
*/
public
void
setComplainScoreEnd
(
BigDecimal
complainScoreEnd
){
public
void
setComplainScoreEnd
(
BigDecimal
complainScoreEnd
){
this
.
complainScoreEnd
=
complainScoreEnd
;
this
.
complainScoreEnd
=
complainScoreEnd
;
}
}
/**
/**
* 获取 增加 投诉绩效指标分数
* 获取 增加 投诉绩效指标分数
* @return complainScoreIncrement
* @return complainScoreIncrement
*/
*/
public
BigDecimal
getComplainScoreIncrement
(){
public
BigDecimal
getComplainScoreIncrement
(){
return
this
.
complainScoreIncrement
;
return
this
.
complainScoreIncrement
;
}
}
/**
/**
* 设置 增加 投诉绩效指标分数
* 设置 增加 投诉绩效指标分数
* @param complainScoreIncrement
* @param complainScoreIncrement
*/
*/
public
void
setComplainScoreIncrement
(
BigDecimal
complainScoreIncrement
){
public
void
setComplainScoreIncrement
(
BigDecimal
complainScoreIncrement
){
this
.
complainScoreIncrement
=
complainScoreIncrement
;
this
.
complainScoreIncrement
=
complainScoreIncrement
;
}
}
/**
/**
* 获取 投诉绩效指标分数
* 获取 投诉绩效指标分数
* @return complainScoreList
* @return complainScoreList
*/
*/
public
List
<
BigDecimal
>
getComplainScoreList
(){
public
List
<
BigDecimal
>
getComplainScoreList
(){
return
this
.
complainScoreList
;
return
this
.
complainScoreList
;
}
}
/**
/**
* 设置 投诉绩效指标分数
* 设置 投诉绩效指标分数
* @param complainScoreList
* @param complainScoreList
*/
*/
public
void
setComplainScoreList
(
List
<
BigDecimal
>
complainScoreList
){
public
void
setComplainScoreList
(
List
<
BigDecimal
>
complainScoreList
){
this
.
complainScoreList
=
complainScoreList
;
this
.
complainScoreList
=
complainScoreList
;
}
}
/**
/**
* 获取 投诉绩效指标分数
* 获取 投诉绩效指标分数
* @return complainScoreNotList
* @return complainScoreNotList
*/
*/
public
List
<
BigDecimal
>
getComplainScoreNotList
(){
public
List
<
BigDecimal
>
getComplainScoreNotList
(){
return
this
.
complainScoreNotList
;
return
this
.
complainScoreNotList
;
}
}
/**
/**
* 设置 投诉绩效指标分数
* 设置 投诉绩效指标分数
* @param complainScoreNotList
* @param complainScoreNotList
*/
*/
public
void
setComplainScoreNotList
(
List
<
BigDecimal
>
complainScoreNotList
){
public
void
setComplainScoreNotList
(
List
<
BigDecimal
>
complainScoreNotList
){
this
.
complainScoreNotList
=
complainScoreNotList
;
this
.
complainScoreNotList
=
complainScoreNotList
;
}
}
/**
/**
* 获取 开始 办件绩效分数
* 获取 开始 办件绩效分数
* @return goworkScoreStart
* @return goworkScoreStart
*/
*/
public
BigDecimal
getGoworkScoreStart
(){
public
BigDecimal
getGoworkScoreStart
(){
return
this
.
goworkScoreStart
;
return
this
.
goworkScoreStart
;
}
}
/**
/**
* 设置 开始 办件绩效分数
* 设置 开始 办件绩效分数
* @param goworkScoreStart
* @param goworkScoreStart
*/
*/
public
void
setGoworkScoreStart
(
BigDecimal
goworkScoreStart
){
public
void
setGoworkScoreStart
(
BigDecimal
goworkScoreStart
){
this
.
goworkScoreStart
=
goworkScoreStart
;
this
.
goworkScoreStart
=
goworkScoreStart
;
}
}
/**
/**
* 获取 结束 办件绩效分数
* 获取 结束 办件绩效分数
* @return $goworkScoreEnd
* @return $goworkScoreEnd
*/
*/
public
BigDecimal
getGoworkScoreEnd
(){
public
BigDecimal
getGoworkScoreEnd
(){
return
this
.
goworkScoreEnd
;
return
this
.
goworkScoreEnd
;
}
}
/**
/**
* 设置 结束 办件绩效分数
* 设置 结束 办件绩效分数
* @param goworkScoreEnd
* @param goworkScoreEnd
*/
*/
public
void
setGoworkScoreEnd
(
BigDecimal
goworkScoreEnd
){
public
void
setGoworkScoreEnd
(
BigDecimal
goworkScoreEnd
){
this
.
goworkScoreEnd
=
goworkScoreEnd
;
this
.
goworkScoreEnd
=
goworkScoreEnd
;
}
}
/**
/**
* 获取 增加 办件绩效分数
* 获取 增加 办件绩效分数
* @return goworkScoreIncrement
* @return goworkScoreIncrement
*/
*/
public
BigDecimal
getGoworkScoreIncrement
(){
public
BigDecimal
getGoworkScoreIncrement
(){
return
this
.
goworkScoreIncrement
;
return
this
.
goworkScoreIncrement
;
}
}
/**
/**
* 设置 增加 办件绩效分数
* 设置 增加 办件绩效分数
* @param goworkScoreIncrement
* @param goworkScoreIncrement
*/
*/
public
void
setGoworkScoreIncrement
(
BigDecimal
goworkScoreIncrement
){
public
void
setGoworkScoreIncrement
(
BigDecimal
goworkScoreIncrement
){
this
.
goworkScoreIncrement
=
goworkScoreIncrement
;
this
.
goworkScoreIncrement
=
goworkScoreIncrement
;
}
}
/**
/**
* 获取 办件绩效分数
* 获取 办件绩效分数
* @return goworkScoreList
* @return goworkScoreList
*/
*/
public
List
<
BigDecimal
>
getGoworkScoreList
(){
public
List
<
BigDecimal
>
getGoworkScoreList
(){
return
this
.
goworkScoreList
;
return
this
.
goworkScoreList
;
}
}
/**
/**
* 设置 办件绩效分数
* 设置 办件绩效分数
* @param goworkScoreList
* @param goworkScoreList
*/
*/
public
void
setGoworkScoreList
(
List
<
BigDecimal
>
goworkScoreList
){
public
void
setGoworkScoreList
(
List
<
BigDecimal
>
goworkScoreList
){
this
.
goworkScoreList
=
goworkScoreList
;
this
.
goworkScoreList
=
goworkScoreList
;
}
}
/**
/**
* 获取 办件绩效分数
* 获取 办件绩效分数
* @return goworkScoreNotList
* @return goworkScoreNotList
*/
*/
public
List
<
BigDecimal
>
getGoworkScoreNotList
(){
public
List
<
BigDecimal
>
getGoworkScoreNotList
(){
return
this
.
goworkScoreNotList
;
return
this
.
goworkScoreNotList
;
}
}
/**
/**
* 设置 办件绩效分数
* 设置 办件绩效分数
* @param goworkScoreNotList
* @param goworkScoreNotList
*/
*/
public
void
setGoworkScoreNotList
(
List
<
BigDecimal
>
goworkScoreNotList
){
public
void
setGoworkScoreNotList
(
List
<
BigDecimal
>
goworkScoreNotList
){
this
.
goworkScoreNotList
=
goworkScoreNotList
;
this
.
goworkScoreNotList
=
goworkScoreNotList
;
}
}
/**
/**
* 获取 开始 效能绩效分数
* 获取 开始 效能绩效分数
* @return effectScoreStart
* @return effectScoreStart
*/
*/
public
BigDecimal
getEffectScoreStart
(){
public
BigDecimal
getEffectScoreStart
(){
return
this
.
effectScoreStart
;
return
this
.
effectScoreStart
;
}
}
/**
/**
* 设置 开始 效能绩效分数
* 设置 开始 效能绩效分数
* @param effectScoreStart
* @param effectScoreStart
*/
*/
public
void
setEffectScoreStart
(
BigDecimal
effectScoreStart
){
public
void
setEffectScoreStart
(
BigDecimal
effectScoreStart
){
this
.
effectScoreStart
=
effectScoreStart
;
this
.
effectScoreStart
=
effectScoreStart
;
}
}
/**
/**
* 获取 结束 效能绩效分数
* 获取 结束 效能绩效分数
* @return $effectScoreEnd
* @return $effectScoreEnd
*/
*/
public
BigDecimal
getEffectScoreEnd
(){
public
BigDecimal
getEffectScoreEnd
(){
return
this
.
effectScoreEnd
;
return
this
.
effectScoreEnd
;
}
}
/**
/**
* 设置 结束 效能绩效分数
* 设置 结束 效能绩效分数
* @param effectScoreEnd
* @param effectScoreEnd
*/
*/
public
void
setEffectScoreEnd
(
BigDecimal
effectScoreEnd
){
public
void
setEffectScoreEnd
(
BigDecimal
effectScoreEnd
){
this
.
effectScoreEnd
=
effectScoreEnd
;
this
.
effectScoreEnd
=
effectScoreEnd
;
}
}
/**
/**
* 获取 增加 效能绩效分数
* 获取 增加 效能绩效分数
* @return effectScoreIncrement
* @return effectScoreIncrement
*/
*/
public
BigDecimal
getEffectScoreIncrement
(){
public
BigDecimal
getEffectScoreIncrement
(){
return
this
.
effectScoreIncrement
;
return
this
.
effectScoreIncrement
;
}
}
/**
/**
* 设置 增加 效能绩效分数
* 设置 增加 效能绩效分数
* @param effectScoreIncrement
* @param effectScoreIncrement
*/
*/
public
void
setEffectScoreIncrement
(
BigDecimal
effectScoreIncrement
){
public
void
setEffectScoreIncrement
(
BigDecimal
effectScoreIncrement
){
this
.
effectScoreIncrement
=
effectScoreIncrement
;
this
.
effectScoreIncrement
=
effectScoreIncrement
;
}
}
/**
/**
* 获取 效能绩效分数
* 获取 效能绩效分数
* @return effectScoreList
* @return effectScoreList
*/
*/
public
List
<
BigDecimal
>
getEffectScoreList
(){
public
List
<
BigDecimal
>
getEffectScoreList
(){
return
this
.
effectScoreList
;
return
this
.
effectScoreList
;
}
}
/**
/**
* 设置 效能绩效分数
* 设置 效能绩效分数
* @param effectScoreList
* @param effectScoreList
*/
*/
public
void
setEffectScoreList
(
List
<
BigDecimal
>
effectScoreList
){
public
void
setEffectScoreList
(
List
<
BigDecimal
>
effectScoreList
){
this
.
effectScoreList
=
effectScoreList
;
this
.
effectScoreList
=
effectScoreList
;
}
}
/**
/**
* 获取 效能绩效分数
* 获取 效能绩效分数
* @return effectScoreNotList
* @return effectScoreNotList
*/
*/
public
List
<
BigDecimal
>
getEffectScoreNotList
(){
public
List
<
BigDecimal
>
getEffectScoreNotList
(){
return
this
.
effectScoreNotList
;
return
this
.
effectScoreNotList
;
}
}
/**
/**
* 设置 效能绩效分数
* 设置 效能绩效分数
* @param effectScoreNotList
* @param effectScoreNotList
*/
*/
public
void
setEffectScoreNotList
(
List
<
BigDecimal
>
effectScoreNotList
){
public
void
setEffectScoreNotList
(
List
<
BigDecimal
>
effectScoreNotList
){
this
.
effectScoreNotList
=
effectScoreNotList
;
this
.
effectScoreNotList
=
effectScoreNotList
;
}
}
/**
/**
* 获取 开始 其它绩效分数
* 获取 开始 其它绩效分数
* @return otherScoreStart
* @return otherScoreStart
*/
*/
public
BigDecimal
getOtherScoreStart
(){
public
BigDecimal
getOtherScoreStart
(){
return
this
.
otherScoreStart
;
return
this
.
otherScoreStart
;
}
}
/**
/**
* 设置 开始 其它绩效分数
* 设置 开始 其它绩效分数
* @param otherScoreStart
* @param otherScoreStart
*/
*/
public
void
setOtherScoreStart
(
BigDecimal
otherScoreStart
){
public
void
setOtherScoreStart
(
BigDecimal
otherScoreStart
){
this
.
otherScoreStart
=
otherScoreStart
;
this
.
otherScoreStart
=
otherScoreStart
;
}
}
/**
/**
* 获取 结束 其它绩效分数
* 获取 结束 其它绩效分数
* @return $otherScoreEnd
* @return $otherScoreEnd
*/
*/
public
BigDecimal
getOtherScoreEnd
(){
public
BigDecimal
getOtherScoreEnd
(){
return
this
.
otherScoreEnd
;
return
this
.
otherScoreEnd
;
}
}
/**
/**
* 设置 结束 其它绩效分数
* 设置 结束 其它绩效分数
* @param otherScoreEnd
* @param otherScoreEnd
*/
*/
public
void
setOtherScoreEnd
(
BigDecimal
otherScoreEnd
){
public
void
setOtherScoreEnd
(
BigDecimal
otherScoreEnd
){
this
.
otherScoreEnd
=
otherScoreEnd
;
this
.
otherScoreEnd
=
otherScoreEnd
;
}
}
/**
/**
* 获取 增加 其它绩效分数
* 获取 增加 其它绩效分数
* @return otherScoreIncrement
* @return otherScoreIncrement
*/
*/
public
BigDecimal
getOtherScoreIncrement
(){
public
BigDecimal
getOtherScoreIncrement
(){
return
this
.
otherScoreIncrement
;
return
this
.
otherScoreIncrement
;
}
}
/**
/**
* 设置 增加 其它绩效分数
* 设置 增加 其它绩效分数
* @param otherScoreIncrement
* @param otherScoreIncrement
*/
*/
public
void
setOtherScoreIncrement
(
BigDecimal
otherScoreIncrement
){
public
void
setOtherScoreIncrement
(
BigDecimal
otherScoreIncrement
){
this
.
otherScoreIncrement
=
otherScoreIncrement
;
this
.
otherScoreIncrement
=
otherScoreIncrement
;
}
}
/**
/**
* 获取 其它绩效分数
* 获取 其它绩效分数
* @return otherScoreList
* @return otherScoreList
*/
*/
public
List
<
BigDecimal
>
getOtherScoreList
(){
public
List
<
BigDecimal
>
getOtherScoreList
(){
return
this
.
otherScoreList
;
return
this
.
otherScoreList
;
}
}
/**
/**
* 设置 其它绩效分数
* 设置 其它绩效分数
* @param otherScoreList
* @param otherScoreList
*/
*/
public
void
setOtherScoreList
(
List
<
BigDecimal
>
otherScoreList
){
public
void
setOtherScoreList
(
List
<
BigDecimal
>
otherScoreList
){
this
.
otherScoreList
=
otherScoreList
;
this
.
otherScoreList
=
otherScoreList
;
}
}
/**
/**
* 获取 其它绩效分数
* 获取 其它绩效分数
* @return otherScoreNotList
* @return otherScoreNotList
*/
*/
public
List
<
BigDecimal
>
getOtherScoreNotList
(){
public
List
<
BigDecimal
>
getOtherScoreNotList
(){
return
this
.
otherScoreNotList
;
return
this
.
otherScoreNotList
;
}
}
/**
/**
* 设置 其它绩效分数
* 设置 其它绩效分数
* @param otherScoreNotList
* @param otherScoreNotList
*/
*/
public
void
setOtherScoreNotList
(
List
<
BigDecimal
>
otherScoreNotList
){
public
void
setOtherScoreNotList
(
List
<
BigDecimal
>
otherScoreNotList
){
this
.
otherScoreNotList
=
otherScoreNotList
;
this
.
otherScoreNotList
=
otherScoreNotList
;
}
}
/**
/**
* 获取 开始 累计异常分数
* 获取 开始 累计异常分数
* @return errorScoreStart
* @return errorScoreStart
*/
*/
public
BigDecimal
getErrorScoreStart
(){
public
BigDecimal
getErrorScoreStart
(){
return
this
.
errorScoreStart
;
return
this
.
errorScoreStart
;
}
}
/**
/**
* 设置 开始 累计异常分数
* 设置 开始 累计异常分数
* @param errorScoreStart
* @param errorScoreStart
*/
*/
public
void
setErrorScoreStart
(
BigDecimal
errorScoreStart
){
public
void
setErrorScoreStart
(
BigDecimal
errorScoreStart
){
this
.
errorScoreStart
=
errorScoreStart
;
this
.
errorScoreStart
=
errorScoreStart
;
}
}
/**
/**
* 获取 结束 累计异常分数
* 获取 结束 累计异常分数
* @return $errorScoreEnd
* @return $errorScoreEnd
*/
*/
public
BigDecimal
getErrorScoreEnd
(){
public
BigDecimal
getErrorScoreEnd
(){
return
this
.
errorScoreEnd
;
return
this
.
errorScoreEnd
;
}
}
/**
/**
* 设置 结束 累计异常分数
* 设置 结束 累计异常分数
* @param errorScoreEnd
* @param errorScoreEnd
*/
*/
public
void
setErrorScoreEnd
(
BigDecimal
errorScoreEnd
){
public
void
setErrorScoreEnd
(
BigDecimal
errorScoreEnd
){
this
.
errorScoreEnd
=
errorScoreEnd
;
this
.
errorScoreEnd
=
errorScoreEnd
;
}
}
/**
/**
* 获取 增加 累计异常分数
* 获取 增加 累计异常分数
* @return errorScoreIncrement
* @return errorScoreIncrement
*/
*/
public
BigDecimal
getErrorScoreIncrement
(){
public
BigDecimal
getErrorScoreIncrement
(){
return
this
.
errorScoreIncrement
;
return
this
.
errorScoreIncrement
;
}
}
/**
/**
* 设置 增加 累计异常分数
* 设置 增加 累计异常分数
* @param errorScoreIncrement
* @param errorScoreIncrement
*/
*/
public
void
setErrorScoreIncrement
(
BigDecimal
errorScoreIncrement
){
public
void
setErrorScoreIncrement
(
BigDecimal
errorScoreIncrement
){
this
.
errorScoreIncrement
=
errorScoreIncrement
;
this
.
errorScoreIncrement
=
errorScoreIncrement
;
}
}
/**
/**
* 获取 累计异常分数
* 获取 累计异常分数
* @return errorScoreList
* @return errorScoreList
*/
*/
public
List
<
BigDecimal
>
getErrorScoreList
(){
public
List
<
BigDecimal
>
getErrorScoreList
(){
return
this
.
errorScoreList
;
return
this
.
errorScoreList
;
}
}
/**
/**
* 设置 累计异常分数
* 设置 累计异常分数
* @param errorScoreList
* @param errorScoreList
*/
*/
public
void
setErrorScoreList
(
List
<
BigDecimal
>
errorScoreList
){
public
void
setErrorScoreList
(
List
<
BigDecimal
>
errorScoreList
){
this
.
errorScoreList
=
errorScoreList
;
this
.
errorScoreList
=
errorScoreList
;
}
}
/**
/**
* 获取 累计异常分数
* 获取 累计异常分数
* @return errorScoreNotList
* @return errorScoreNotList
*/
*/
public
List
<
BigDecimal
>
getErrorScoreNotList
(){
public
List
<
BigDecimal
>
getErrorScoreNotList
(){
return
this
.
errorScoreNotList
;
return
this
.
errorScoreNotList
;
}
}
/**
/**
* 设置 累计异常分数
* 设置 累计异常分数
* @param errorScoreNotList
* @param errorScoreNotList
*/
*/
public
void
setErrorScoreNotList
(
List
<
BigDecimal
>
errorScoreNotList
){
public
void
setErrorScoreNotList
(
List
<
BigDecimal
>
errorScoreNotList
){
this
.
errorScoreNotList
=
errorScoreNotList
;
this
.
errorScoreNotList
=
errorScoreNotList
;
}
}
/**
/**
* 获取 开始 当月得分数
* 获取 开始 当月得分数
* @return totalScoreStart
* @return totalScoreStart
*/
*/
public
BigDecimal
getTotalScoreStart
(){
public
BigDecimal
getTotalScoreStart
(){
return
this
.
totalScoreStart
;
return
this
.
totalScoreStart
;
}
}
/**
/**
* 设置 开始 当月得分数
* 设置 开始 当月得分数
* @param totalScoreStart
* @param totalScoreStart
*/
*/
public
void
setTotalScoreStart
(
BigDecimal
totalScoreStart
){
public
void
setTotalScoreStart
(
BigDecimal
totalScoreStart
){
this
.
totalScoreStart
=
totalScoreStart
;
this
.
totalScoreStart
=
totalScoreStart
;
}
}
/**
/**
* 获取 结束 当月得分数
* 获取 结束 当月得分数
* @return $totalScoreEnd
* @return $totalScoreEnd
*/
*/
public
BigDecimal
getTotalScoreEnd
(){
public
BigDecimal
getTotalScoreEnd
(){
return
this
.
totalScoreEnd
;
return
this
.
totalScoreEnd
;
}
}
/**
/**
* 设置 结束 当月得分数
* 设置 结束 当月得分数
* @param totalScoreEnd
* @param totalScoreEnd
*/
*/
public
void
setTotalScoreEnd
(
BigDecimal
totalScoreEnd
){
public
void
setTotalScoreEnd
(
BigDecimal
totalScoreEnd
){
this
.
totalScoreEnd
=
totalScoreEnd
;
this
.
totalScoreEnd
=
totalScoreEnd
;
}
}
/**
/**
* 获取 增加 当月得分数
* 获取 增加 当月得分数
* @return totalScoreIncrement
* @return totalScoreIncrement
*/
*/
public
BigDecimal
getTotalScoreIncrement
(){
public
BigDecimal
getTotalScoreIncrement
(){
return
this
.
totalScoreIncrement
;
return
this
.
totalScoreIncrement
;
}
}
/**
/**
* 设置 增加 当月得分数
* 设置 增加 当月得分数
* @param totalScoreIncrement
* @param totalScoreIncrement
*/
*/
public
void
setTotalScoreIncrement
(
BigDecimal
totalScoreIncrement
){
public
void
setTotalScoreIncrement
(
BigDecimal
totalScoreIncrement
){
this
.
totalScoreIncrement
=
totalScoreIncrement
;
this
.
totalScoreIncrement
=
totalScoreIncrement
;
}
}
/**
/**
* 获取 当月得分数
* 获取 当月得分数
* @return totalScoreList
* @return totalScoreList
*/
*/
public
List
<
BigDecimal
>
getTotalScoreList
(){
public
List
<
BigDecimal
>
getTotalScoreList
(){
return
this
.
totalScoreList
;
return
this
.
totalScoreList
;
}
}
/**
/**
* 设置 当月得分数
* 设置 当月得分数
* @param totalScoreList
* @param totalScoreList
*/
*/
public
void
setTotalScoreList
(
List
<
BigDecimal
>
totalScoreList
){
public
void
setTotalScoreList
(
List
<
BigDecimal
>
totalScoreList
){
this
.
totalScoreList
=
totalScoreList
;
this
.
totalScoreList
=
totalScoreList
;
}
}
/**
/**
* 获取 当月得分数
* 获取 当月得分数
* @return totalScoreNotList
* @return totalScoreNotList
*/
*/
public
List
<
BigDecimal
>
getTotalScoreNotList
(){
public
List
<
BigDecimal
>
getTotalScoreNotList
(){
return
this
.
totalScoreNotList
;
return
this
.
totalScoreNotList
;
}
}
/**
/**
* 设置 当月得分数
* 设置 当月得分数
* @param totalScoreNotList
* @param totalScoreNotList
*/
*/
public
void
setTotalScoreNotList
(
List
<
BigDecimal
>
totalScoreNotList
){
public
void
setTotalScoreNotList
(
List
<
BigDecimal
>
totalScoreNotList
){
this
.
totalScoreNotList
=
totalScoreNotList
;
this
.
totalScoreNotList
=
totalScoreNotList
;
}
}
/**
/**
* 获取 备注
* 获取 备注
* @return remarkList
* @return remarkList
*/
*/
public
List
<
String
>
getRemarkList
(){
public
List
<
String
>
getRemarkList
(){
return
this
.
remarkList
;
return
this
.
remarkList
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remarkList
* @param remarkList
*/
*/
public
void
setRemarkList
(
List
<
String
>
remarkList
){
public
void
setRemarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
this
.
remarkList
=
remarkList
;
}
}
/**
/**
* 获取 备注
* 获取 备注
* @return remarkNotList
* @return remarkNotList
*/
*/
public
List
<
String
>
getRemarkNotList
(){
public
List
<
String
>
getRemarkNotList
(){
return
this
.
remarkNotList
;
return
this
.
remarkNotList
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remarkNotList
* @param remarkNotList
*/
*/
public
void
setRemarkNotList
(
List
<
String
>
remarkNotList
){
public
void
setRemarkNotList
(
List
<
String
>
remarkNotList
){
this
.
remarkNotList
=
remarkNotList
;
this
.
remarkNotList
=
remarkNotList
;
}
}
/**
/**
* 获取 开始 年
* 获取 开始 年
* @return yearStart
* @return yearStart
*/
*/
public
Integer
getYearStart
(){
public
Integer
getYearStart
(){
return
this
.
yearStart
;
return
this
.
yearStart
;
}
}
/**
/**
* 设置 开始 年
* 设置 开始 年
* @param yearStart
* @param yearStart
*/
*/
public
void
setYearStart
(
Integer
yearStart
){
public
void
setYearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
this
.
yearStart
=
yearStart
;
}
}
/**
/**
* 获取 结束 年
* 获取 结束 年
* @return $yearEnd
* @return $yearEnd
*/
*/
public
Integer
getYearEnd
(){
public
Integer
getYearEnd
(){
return
this
.
yearEnd
;
return
this
.
yearEnd
;
}
}
/**
/**
* 设置 结束 年
* 设置 结束 年
* @param yearEnd
* @param yearEnd
*/
*/
public
void
setYearEnd
(
Integer
yearEnd
){
public
void
setYearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
this
.
yearEnd
=
yearEnd
;
}
}
/**
/**
* 获取 增加 年
* 获取 增加 年
* @return yearIncrement
* @return yearIncrement
*/
*/
public
Integer
getYearIncrement
(){
public
Integer
getYearIncrement
(){
return
this
.
yearIncrement
;
return
this
.
yearIncrement
;
}
}
/**
/**
* 设置 增加 年
* 设置 增加 年
* @param yearIncrement
* @param yearIncrement
*/
*/
public
void
setYearIncrement
(
Integer
yearIncrement
){
public
void
setYearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
this
.
yearIncrement
=
yearIncrement
;
}
}
/**
/**
* 获取 年
* 获取 年
* @return yearList
* @return yearList
*/
*/
public
List
<
Integer
>
getYearList
(){
public
List
<
Integer
>
getYearList
(){
return
this
.
yearList
;
return
this
.
yearList
;
}
}
/**
/**
* 设置 年
* 设置 年
* @param yearList
* @param yearList
*/
*/
public
void
setYearList
(
List
<
Integer
>
yearList
){
public
void
setYearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
this
.
yearList
=
yearList
;
}
}
/**
/**
* 获取 年
* 获取 年
* @return yearNotList
* @return yearNotList
*/
*/
public
List
<
Integer
>
getYearNotList
(){
public
List
<
Integer
>
getYearNotList
(){
return
this
.
yearNotList
;
return
this
.
yearNotList
;
}
}
/**
/**
* 设置 年
* 设置 年
* @param yearNotList
* @param yearNotList
*/
*/
public
void
setYearNotList
(
List
<
Integer
>
yearNotList
){
public
void
setYearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
this
.
yearNotList
=
yearNotList
;
}
}
/**
/**
* 获取 开始 月
* 获取 开始 月
* @return monthStart
* @return monthStart
*/
*/
public
Integer
getMonthStart
(){
public
Integer
getMonthStart
(){
return
this
.
monthStart
;
return
this
.
monthStart
;
}
}
/**
/**
* 设置 开始 月
* 设置 开始 月
* @param monthStart
* @param monthStart
*/
*/
public
void
setMonthStart
(
Integer
monthStart
){
public
void
setMonthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
this
.
monthStart
=
monthStart
;
}
}
/**
/**
* 获取 结束 月
* 获取 结束 月
* @return $monthEnd
* @return $monthEnd
*/
*/
public
Integer
getMonthEnd
(){
public
Integer
getMonthEnd
(){
return
this
.
monthEnd
;
return
this
.
monthEnd
;
}
}
/**
/**
* 设置 结束 月
* 设置 结束 月
* @param monthEnd
* @param monthEnd
*/
*/
public
void
setMonthEnd
(
Integer
monthEnd
){
public
void
setMonthEnd
(
Integer
monthEnd
){
this
.
monthEnd
=
monthEnd
;
this
.
monthEnd
=
monthEnd
;
}
}
/**
/**
* 获取 增加 月
* 获取 增加 月
* @return monthIncrement
* @return monthIncrement
*/
*/
public
Integer
getMonthIncrement
(){
public
Integer
getMonthIncrement
(){
return
this
.
monthIncrement
;
return
this
.
monthIncrement
;
}
}
/**
/**
* 设置 增加 月
* 设置 增加 月
* @param monthIncrement
* @param monthIncrement
*/
*/
public
void
setMonthIncrement
(
Integer
monthIncrement
){
public
void
setMonthIncrement
(
Integer
monthIncrement
){
this
.
monthIncrement
=
monthIncrement
;
this
.
monthIncrement
=
monthIncrement
;
}
}
/**
/**
* 获取 月
* 获取 月
* @return monthList
* @return monthList
*/
*/
public
List
<
Integer
>
getMonthList
(){
public
List
<
Integer
>
getMonthList
(){
return
this
.
monthList
;
return
this
.
monthList
;
}
}
/**
/**
* 设置 月
* 设置 月
* @param monthList
* @param monthList
*/
*/
public
void
setMonthList
(
List
<
Integer
>
monthList
){
public
void
setMonthList
(
List
<
Integer
>
monthList
){
this
.
monthList
=
monthList
;
this
.
monthList
=
monthList
;
}
}
/**
/**
* 获取 月
* 获取 月
* @return monthNotList
* @return monthNotList
*/
*/
public
List
<
Integer
>
getMonthNotList
(){
public
List
<
Integer
>
getMonthNotList
(){
return
this
.
monthNotList
;
return
this
.
monthNotList
;
}
}
/**
/**
* 设置 月
* 设置 月
* @param monthNotList
* @param monthNotList
*/
*/
public
void
setMonthNotList
(
List
<
Integer
>
monthNotList
){
public
void
setMonthNotList
(
List
<
Integer
>
monthNotList
){
this
.
monthNotList
=
monthNotList
;
this
.
monthNotList
=
monthNotList
;
}
}
/**
/**
* 获取 开始 创建时间
* 获取 开始 创建时间
* @return createTimeStart
* @return createTimeStart
*/
*/
public
String
getCreateTimeStart
(){
public
String
getCreateTimeStart
(){
return
this
.
createTimeStart
;
return
this
.
createTimeStart
;
}
}
/**
/**
* 设置 开始 创建时间
* 设置 开始 创建时间
* @param createTimeStart
* @param createTimeStart
*/
*/
public
void
setCreateTimeStart
(
String
createTimeStart
){
public
void
setCreateTimeStart
(
String
createTimeStart
){
this
.
createTimeStart
=
createTimeStart
;
this
.
createTimeStart
=
createTimeStart
;
}
}
/**
/**
* 获取 结束 创建时间
* 获取 结束 创建时间
* @return createTimeEnd
* @return createTimeEnd
*/
*/
public
String
getCreateTimeEnd
(){
public
String
getCreateTimeEnd
(){
return
this
.
createTimeEnd
;
return
this
.
createTimeEnd
;
}
}
/**
/**
* 设置 结束 创建时间
* 设置 结束 创建时间
* @param createTimeEnd
* @param createTimeEnd
*/
*/
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
public
void
setCreateTimeEnd
(
String
createTimeEnd
){
this
.
createTimeEnd
=
createTimeEnd
;
this
.
createTimeEnd
=
createTimeEnd
;
}
}
/**
/**
* 获取 开始 创建人id
* 获取 开始 创建人id
* @return createUserIdStart
* @return createUserIdStart
*/
*/
public
Long
getCreateUserIdStart
(){
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
return
this
.
createUserIdStart
;
}
}
/**
/**
* 设置 开始 创建人id
* 设置 开始 创建人id
* @param createUserIdStart
* @param createUserIdStart
*/
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
this
.
createUserIdStart
=
createUserIdStart
;
}
}
/**
/**
* 获取 结束 创建人id
* 获取 结束 创建人id
* @return $createUserIdEnd
* @return $createUserIdEnd
*/
*/
public
Long
getCreateUserIdEnd
(){
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
return
this
.
createUserIdEnd
;
}
}
/**
/**
* 设置 结束 创建人id
* 设置 结束 创建人id
* @param createUserIdEnd
* @param createUserIdEnd
*/
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
this
.
createUserIdEnd
=
createUserIdEnd
;
}
}
/**
/**
* 获取 增加 创建人id
* 获取 增加 创建人id
* @return createUserIdIncrement
* @return createUserIdIncrement
*/
*/
public
Long
getCreateUserIdIncrement
(){
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
return
this
.
createUserIdIncrement
;
}
}
/**
/**
* 设置 增加 创建人id
* 设置 增加 创建人id
* @param createUserIdIncrement
* @param createUserIdIncrement
*/
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
}
/**
/**
* 获取 创建人id
* 获取 创建人id
* @return createUserIdList
* @return createUserIdList
*/
*/
public
List
<
Long
>
getCreateUserIdList
(){
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
return
this
.
createUserIdList
;
}
}
/**
/**
* 设置 创建人id
* 设置 创建人id
* @param createUserIdList
* @param createUserIdList
*/
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
this
.
createUserIdList
=
createUserIdList
;
}
}
/**
/**
* 获取 创建人id
* 获取 创建人id
* @return createUserIdNotList
* @return createUserIdNotList
*/
*/
public
List
<
Long
>
getCreateUserIdNotList
(){
public
List
<
Long
>
getCreateUserIdNotList
(){
return
this
.
createUserIdNotList
;
return
this
.
createUserIdNotList
;
}
}
/**
/**
* 设置 创建人id
* 设置 创建人id
* @param createUserIdNotList
* @param createUserIdNotList
*/
*/
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
this
.
createUserIdNotList
=
createUserIdNotList
;
}
}
/**
/**
* 获取 开始 更新时间
* 获取 开始 更新时间
* @return updateTimeStart
* @return updateTimeStart
*/
*/
public
String
getUpdateTimeStart
(){
public
String
getUpdateTimeStart
(){
return
this
.
updateTimeStart
;
return
this
.
updateTimeStart
;
}
}
/**
/**
* 设置 开始 更新时间
* 设置 开始 更新时间
* @param updateTimeStart
* @param updateTimeStart
*/
*/
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
public
void
setUpdateTimeStart
(
String
updateTimeStart
){
this
.
updateTimeStart
=
updateTimeStart
;
this
.
updateTimeStart
=
updateTimeStart
;
}
}
/**
/**
* 获取 结束 更新时间
* 获取 结束 更新时间
* @return updateTimeEnd
* @return updateTimeEnd
*/
*/
public
String
getUpdateTimeEnd
(){
public
String
getUpdateTimeEnd
(){
return
this
.
updateTimeEnd
;
return
this
.
updateTimeEnd
;
}
}
/**
/**
* 设置 结束 更新时间
* 设置 结束 更新时间
* @param updateTimeEnd
* @param updateTimeEnd
*/
*/
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
public
void
setUpdateTimeEnd
(
String
updateTimeEnd
){
this
.
updateTimeEnd
=
updateTimeEnd
;
this
.
updateTimeEnd
=
updateTimeEnd
;
}
}
/**
/**
* 获取 开始 更新人id
* 获取 开始 更新人id
* @return updateUserIdStart
* @return updateUserIdStart
*/
*/
public
Long
getUpdateUserIdStart
(){
public
Long
getUpdateUserIdStart
(){
return
this
.
updateUserIdStart
;
return
this
.
updateUserIdStart
;
}
}
/**
/**
* 设置 开始 更新人id
* 设置 开始 更新人id
* @param updateUserIdStart
* @param updateUserIdStart
*/
*/
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
this
.
updateUserIdStart
=
updateUserIdStart
;
}
}
/**
/**
* 获取 结束 更新人id
* 获取 结束 更新人id
* @return $updateUserIdEnd
* @return $updateUserIdEnd
*/
*/
public
Long
getUpdateUserIdEnd
(){
public
Long
getUpdateUserIdEnd
(){
return
this
.
updateUserIdEnd
;
return
this
.
updateUserIdEnd
;
}
}
/**
/**
* 设置 结束 更新人id
* 设置 结束 更新人id
* @param updateUserIdEnd
* @param updateUserIdEnd
*/
*/
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
this
.
updateUserIdEnd
=
updateUserIdEnd
;
}
}
/**
/**
* 获取 增加 更新人id
* 获取 增加 更新人id
* @return updateUserIdIncrement
* @return updateUserIdIncrement
*/
*/
public
Long
getUpdateUserIdIncrement
(){
public
Long
getUpdateUserIdIncrement
(){
return
this
.
updateUserIdIncrement
;
return
this
.
updateUserIdIncrement
;
}
}
/**
/**
* 设置 增加 更新人id
* 设置 增加 更新人id
* @param updateUserIdIncrement
* @param updateUserIdIncrement
*/
*/
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
}
}
/**
/**
* 获取 更新人id
* 获取 更新人id
* @return updateUserIdList
* @return updateUserIdList
*/
*/
public
List
<
Long
>
getUpdateUserIdList
(){
public
List
<
Long
>
getUpdateUserIdList
(){
return
this
.
updateUserIdList
;
return
this
.
updateUserIdList
;
}
}
/**
/**
* 设置 更新人id
* 设置 更新人id
* @param updateUserIdList
* @param updateUserIdList
*/
*/
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
this
.
updateUserIdList
=
updateUserIdList
;
}
}
/**
/**
* 获取 更新人id
* 获取 更新人id
* @return updateUserIdNotList
* @return updateUserIdNotList
*/
*/
public
List
<
Long
>
getUpdateUserIdNotList
(){
public
List
<
Long
>
getUpdateUserIdNotList
(){
return
this
.
updateUserIdNotList
;
return
this
.
updateUserIdNotList
;
}
}
/**
/**
* 设置 更新人id
* 设置 更新人id
* @param updateUserIdNotList
* @param updateUserIdNotList
*/
*/
public
void
setUpdateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
public
void
setUpdateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
this
.
updateUserIdNotList
=
updateUserIdNotList
;
}
}
/**
/**
* 设置 主键ID,主键,自增长
* 获取 所属中心
* @param id
* @return belongCenterList
*/
*/
public
List
<
String
>
getBelongCenterList
(){
return
this
.
belongCenterList
;
}
/**
* 设置 所属中心
* @param belongCenterList
*/
public
void
setBelongCenterList
(
List
<
String
>
belongCenterList
){
this
.
belongCenterList
=
belongCenterList
;
}
/**
* 获取 所属中心
* @return belongCenterNotList
*/
public
List
<
String
>
getBelongCenterNotList
(){
return
this
.
belongCenterNotList
;
}
/**
* 设置 所属中心
* @param belongCenterNotList
*/
public
void
setBelongCenterNotList
(
List
<
String
>
belongCenterNotList
){
this
.
belongCenterNotList
=
belongCenterNotList
;
}
/**
* 设置 主键ID,主键,自增长
* @param id
*/
public
StaffPerformSummaryQuery
id
(
Long
id
){
public
StaffPerformSummaryQuery
id
(
Long
id
){
setId
(
id
);
setId
(
id
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 主键ID,主键,自增长
* 设置 开始 主键ID,主键,自增长
* @param idStart
* @param idStart
*/
*/
public
StaffPerformSummaryQuery
idStart
(
Long
idStart
){
public
StaffPerformSummaryQuery
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
this
.
idStart
=
idStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 主键ID,主键,自增长
* 设置 结束 主键ID,主键,自增长
* @param idEnd
* @param idEnd
*/
*/
public
StaffPerformSummaryQuery
idEnd
(
Long
idEnd
){
public
StaffPerformSummaryQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
this
.
idEnd
=
idEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 主键ID,主键,自增长
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
* @param idIncrement
*/
*/
public
StaffPerformSummaryQuery
idIncrement
(
Long
idIncrement
){
public
StaffPerformSummaryQuery
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
this
.
idIncrement
=
idIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 主键ID,主键,自增长
* 设置 主键ID,主键,自增长
* @param idList
* @param idList
*/
*/
public
StaffPerformSummaryQuery
idList
(
List
<
Long
>
idList
){
public
StaffPerformSummaryQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
this
.
idList
=
idList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 主键ID,主键,自增长
* 设置 主键ID,主键,自增长
* @param idNotList
* @param idNotList
*/
*/
public
StaffPerformSummaryQuery
idNotList
(
List
<
Long
>
idNotList
){
public
StaffPerformSummaryQuery
idNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
this
.
idNotList
=
idNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员id
* 设置 人员id
* @param staffId
* @param staffId
*/
*/
public
StaffPerformSummaryQuery
staffId
(
Long
staffId
){
public
StaffPerformSummaryQuery
staffId
(
Long
staffId
){
setStaffId
(
staffId
);
setStaffId
(
staffId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 人员id
* 设置 开始 人员id
* @param staffIdStart
* @param staffIdStart
*/
*/
public
StaffPerformSummaryQuery
staffIdStart
(
Long
staffIdStart
){
public
StaffPerformSummaryQuery
staffIdStart
(
Long
staffIdStart
){
this
.
staffIdStart
=
staffIdStart
;
this
.
staffIdStart
=
staffIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 人员id
* 设置 结束 人员id
* @param staffIdEnd
* @param staffIdEnd
*/
*/
public
StaffPerformSummaryQuery
staffIdEnd
(
Long
staffIdEnd
){
public
StaffPerformSummaryQuery
staffIdEnd
(
Long
staffIdEnd
){
this
.
staffIdEnd
=
staffIdEnd
;
this
.
staffIdEnd
=
staffIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 人员id
* 设置 增加 人员id
* @param staffIdIncrement
* @param staffIdIncrement
*/
*/
public
StaffPerformSummaryQuery
staffIdIncrement
(
Long
staffIdIncrement
){
public
StaffPerformSummaryQuery
staffIdIncrement
(
Long
staffIdIncrement
){
this
.
staffIdIncrement
=
staffIdIncrement
;
this
.
staffIdIncrement
=
staffIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员id
* 设置 人员id
* @param staffIdList
* @param staffIdList
*/
*/
public
StaffPerformSummaryQuery
staffIdList
(
List
<
Long
>
staffIdList
){
public
StaffPerformSummaryQuery
staffIdList
(
List
<
Long
>
staffIdList
){
this
.
staffIdList
=
staffIdList
;
this
.
staffIdList
=
staffIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员id
* 设置 人员id
* @param staffIdNotList
* @param staffIdNotList
*/
*/
public
StaffPerformSummaryQuery
staffIdNotList
(
List
<
Long
>
staffIdNotList
){
public
StaffPerformSummaryQuery
staffIdNotList
(
List
<
Long
>
staffIdNotList
){
this
.
staffIdNotList
=
staffIdNotList
;
this
.
staffIdNotList
=
staffIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工号
* 设置 工号
* @param workNum
* @param workNum
*/
*/
public
StaffPerformSummaryQuery
workNum
(
String
workNum
){
public
StaffPerformSummaryQuery
workNum
(
String
workNum
){
setWorkNum
(
workNum
);
setWorkNum
(
workNum
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 工号
* 设置 工号
* @param workNumList
* @param workNumList
*/
*/
public
StaffPerformSummaryQuery
workNumList
(
List
<
String
>
workNumList
){
public
StaffPerformSummaryQuery
workNumList
(
List
<
String
>
workNumList
){
this
.
workNumList
=
workNumList
;
this
.
workNumList
=
workNumList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员名称
* 设置 人员名称
* @param staffName
* @param staffName
*/
*/
public
StaffPerformSummaryQuery
staffName
(
String
staffName
){
public
StaffPerformSummaryQuery
staffName
(
String
staffName
){
setStaffName
(
staffName
);
setStaffName
(
staffName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员名称
* 设置 人员名称
* @param staffNameList
* @param staffNameList
*/
*/
public
StaffPerformSummaryQuery
staffNameList
(
List
<
String
>
staffNameList
){
public
StaffPerformSummaryQuery
staffNameList
(
List
<
String
>
staffNameList
){
this
.
staffNameList
=
staffNameList
;
this
.
staffNameList
=
staffNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 部门id号
* 设置 部门id号
* @param deptId
* @param deptId
*/
*/
public
StaffPerformSummaryQuery
deptId
(
Long
deptId
){
public
StaffPerformSummaryQuery
deptId
(
Long
deptId
){
setDeptId
(
deptId
);
setDeptId
(
deptId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 部门id号
* 设置 开始 部门id号
* @param deptIdStart
* @param deptIdStart
*/
*/
public
StaffPerformSummaryQuery
deptIdStart
(
Long
deptIdStart
){
public
StaffPerformSummaryQuery
deptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
this
.
deptIdStart
=
deptIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 部门id号
* 设置 结束 部门id号
* @param deptIdEnd
* @param deptIdEnd
*/
*/
public
StaffPerformSummaryQuery
deptIdEnd
(
Long
deptIdEnd
){
public
StaffPerformSummaryQuery
deptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
this
.
deptIdEnd
=
deptIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 部门id号
* 设置 增加 部门id号
* @param deptIdIncrement
* @param deptIdIncrement
*/
*/
public
StaffPerformSummaryQuery
deptIdIncrement
(
Long
deptIdIncrement
){
public
StaffPerformSummaryQuery
deptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
this
.
deptIdIncrement
=
deptIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 部门id号
* 设置 部门id号
* @param deptIdList
* @param deptIdList
*/
*/
public
StaffPerformSummaryQuery
deptIdList
(
List
<
Long
>
deptIdList
){
public
StaffPerformSummaryQuery
deptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
this
.
deptIdList
=
deptIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 部门id号
* 设置 部门id号
* @param deptIdNotList
* @param deptIdNotList
*/
*/
public
StaffPerformSummaryQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
public
StaffPerformSummaryQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
this
.
deptIdNotList
=
deptIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 部门名称
* 设置 部门名称
* @param deptName
* @param deptName
*/
*/
public
StaffPerformSummaryQuery
deptName
(
String
deptName
){
public
StaffPerformSummaryQuery
deptName
(
String
deptName
){
setDeptName
(
deptName
);
setDeptName
(
deptName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 部门名称
* 设置 部门名称
* @param deptNameList
* @param deptNameList
*/
*/
public
StaffPerformSummaryQuery
deptNameList
(
List
<
String
>
deptNameList
){
public
StaffPerformSummaryQuery
deptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
this
.
deptNameList
=
deptNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考勤绩效指标分数
* 设置 考勤绩效指标分数
* @param attendScore
* @param attendScore
*/
*/
public
StaffPerformSummaryQuery
attendScore
(
BigDecimal
attendScore
){
public
StaffPerformSummaryQuery
attendScore
(
BigDecimal
attendScore
){
setAttendScore
(
attendScore
);
setAttendScore
(
attendScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 考勤绩效指标分数
* 设置 开始 考勤绩效指标分数
* @param attendScoreStart
* @param attendScoreStart
*/
*/
public
StaffPerformSummaryQuery
attendScoreStart
(
BigDecimal
attendScoreStart
){
public
StaffPerformSummaryQuery
attendScoreStart
(
BigDecimal
attendScoreStart
){
this
.
attendScoreStart
=
attendScoreStart
;
this
.
attendScoreStart
=
attendScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 考勤绩效指标分数
* 设置 结束 考勤绩效指标分数
* @param attendScoreEnd
* @param attendScoreEnd
*/
*/
public
StaffPerformSummaryQuery
attendScoreEnd
(
BigDecimal
attendScoreEnd
){
public
StaffPerformSummaryQuery
attendScoreEnd
(
BigDecimal
attendScoreEnd
){
this
.
attendScoreEnd
=
attendScoreEnd
;
this
.
attendScoreEnd
=
attendScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 考勤绩效指标分数
* 设置 增加 考勤绩效指标分数
* @param attendScoreIncrement
* @param attendScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
attendScoreIncrement
(
BigDecimal
attendScoreIncrement
){
public
StaffPerformSummaryQuery
attendScoreIncrement
(
BigDecimal
attendScoreIncrement
){
this
.
attendScoreIncrement
=
attendScoreIncrement
;
this
.
attendScoreIncrement
=
attendScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考勤绩效指标分数
* 设置 考勤绩效指标分数
* @param attendScoreList
* @param attendScoreList
*/
*/
public
StaffPerformSummaryQuery
attendScoreList
(
List
<
BigDecimal
>
attendScoreList
){
public
StaffPerformSummaryQuery
attendScoreList
(
List
<
BigDecimal
>
attendScoreList
){
this
.
attendScoreList
=
attendScoreList
;
this
.
attendScoreList
=
attendScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考勤绩效指标分数
* 设置 考勤绩效指标分数
* @param attendScoreNotList
* @param attendScoreNotList
*/
*/
public
StaffPerformSummaryQuery
attendScoreNotList
(
List
<
BigDecimal
>
attendScoreNotList
){
public
StaffPerformSummaryQuery
attendScoreNotList
(
List
<
BigDecimal
>
attendScoreNotList
){
this
.
attendScoreNotList
=
attendScoreNotList
;
this
.
attendScoreNotList
=
attendScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 评价绩效指标分数
* 设置 评价绩效指标分数
* @param reviewScore
* @param reviewScore
*/
*/
public
StaffPerformSummaryQuery
reviewScore
(
BigDecimal
reviewScore
){
public
StaffPerformSummaryQuery
reviewScore
(
BigDecimal
reviewScore
){
setReviewScore
(
reviewScore
);
setReviewScore
(
reviewScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 评价绩效指标分数
* 设置 开始 评价绩效指标分数
* @param reviewScoreStart
* @param reviewScoreStart
*/
*/
public
StaffPerformSummaryQuery
reviewScoreStart
(
BigDecimal
reviewScoreStart
){
public
StaffPerformSummaryQuery
reviewScoreStart
(
BigDecimal
reviewScoreStart
){
this
.
reviewScoreStart
=
reviewScoreStart
;
this
.
reviewScoreStart
=
reviewScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 评价绩效指标分数
* 设置 结束 评价绩效指标分数
* @param reviewScoreEnd
* @param reviewScoreEnd
*/
*/
public
StaffPerformSummaryQuery
reviewScoreEnd
(
BigDecimal
reviewScoreEnd
){
public
StaffPerformSummaryQuery
reviewScoreEnd
(
BigDecimal
reviewScoreEnd
){
this
.
reviewScoreEnd
=
reviewScoreEnd
;
this
.
reviewScoreEnd
=
reviewScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 评价绩效指标分数
* 设置 增加 评价绩效指标分数
* @param reviewScoreIncrement
* @param reviewScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
reviewScoreIncrement
(
BigDecimal
reviewScoreIncrement
){
public
StaffPerformSummaryQuery
reviewScoreIncrement
(
BigDecimal
reviewScoreIncrement
){
this
.
reviewScoreIncrement
=
reviewScoreIncrement
;
this
.
reviewScoreIncrement
=
reviewScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 评价绩效指标分数
* 设置 评价绩效指标分数
* @param reviewScoreList
* @param reviewScoreList
*/
*/
public
StaffPerformSummaryQuery
reviewScoreList
(
List
<
BigDecimal
>
reviewScoreList
){
public
StaffPerformSummaryQuery
reviewScoreList
(
List
<
BigDecimal
>
reviewScoreList
){
this
.
reviewScoreList
=
reviewScoreList
;
this
.
reviewScoreList
=
reviewScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 评价绩效指标分数
* 设置 评价绩效指标分数
* @param reviewScoreNotList
* @param reviewScoreNotList
*/
*/
public
StaffPerformSummaryQuery
reviewScoreNotList
(
List
<
BigDecimal
>
reviewScoreNotList
){
public
StaffPerformSummaryQuery
reviewScoreNotList
(
List
<
BigDecimal
>
reviewScoreNotList
){
this
.
reviewScoreNotList
=
reviewScoreNotList
;
this
.
reviewScoreNotList
=
reviewScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 投诉绩效指标分数
* 设置 投诉绩效指标分数
* @param complainScore
* @param complainScore
*/
*/
public
StaffPerformSummaryQuery
complainScore
(
BigDecimal
complainScore
){
public
StaffPerformSummaryQuery
complainScore
(
BigDecimal
complainScore
){
setComplainScore
(
complainScore
);
setComplainScore
(
complainScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 投诉绩效指标分数
* 设置 开始 投诉绩效指标分数
* @param complainScoreStart
* @param complainScoreStart
*/
*/
public
StaffPerformSummaryQuery
complainScoreStart
(
BigDecimal
complainScoreStart
){
public
StaffPerformSummaryQuery
complainScoreStart
(
BigDecimal
complainScoreStart
){
this
.
complainScoreStart
=
complainScoreStart
;
this
.
complainScoreStart
=
complainScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 投诉绩效指标分数
* 设置 结束 投诉绩效指标分数
* @param complainScoreEnd
* @param complainScoreEnd
*/
*/
public
StaffPerformSummaryQuery
complainScoreEnd
(
BigDecimal
complainScoreEnd
){
public
StaffPerformSummaryQuery
complainScoreEnd
(
BigDecimal
complainScoreEnd
){
this
.
complainScoreEnd
=
complainScoreEnd
;
this
.
complainScoreEnd
=
complainScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 投诉绩效指标分数
* 设置 增加 投诉绩效指标分数
* @param complainScoreIncrement
* @param complainScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
complainScoreIncrement
(
BigDecimal
complainScoreIncrement
){
public
StaffPerformSummaryQuery
complainScoreIncrement
(
BigDecimal
complainScoreIncrement
){
this
.
complainScoreIncrement
=
complainScoreIncrement
;
this
.
complainScoreIncrement
=
complainScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 投诉绩效指标分数
* 设置 投诉绩效指标分数
* @param complainScoreList
* @param complainScoreList
*/
*/
public
StaffPerformSummaryQuery
complainScoreList
(
List
<
BigDecimal
>
complainScoreList
){
public
StaffPerformSummaryQuery
complainScoreList
(
List
<
BigDecimal
>
complainScoreList
){
this
.
complainScoreList
=
complainScoreList
;
this
.
complainScoreList
=
complainScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 投诉绩效指标分数
* 设置 投诉绩效指标分数
* @param complainScoreNotList
* @param complainScoreNotList
*/
*/
public
StaffPerformSummaryQuery
complainScoreNotList
(
List
<
BigDecimal
>
complainScoreNotList
){
public
StaffPerformSummaryQuery
complainScoreNotList
(
List
<
BigDecimal
>
complainScoreNotList
){
this
.
complainScoreNotList
=
complainScoreNotList
;
this
.
complainScoreNotList
=
complainScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 办件绩效分数
* 设置 办件绩效分数
* @param goworkScore
* @param goworkScore
*/
*/
public
StaffPerformSummaryQuery
goworkScore
(
BigDecimal
goworkScore
){
public
StaffPerformSummaryQuery
goworkScore
(
BigDecimal
goworkScore
){
setGoworkScore
(
goworkScore
);
setGoworkScore
(
goworkScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 办件绩效分数
* 设置 开始 办件绩效分数
* @param goworkScoreStart
* @param goworkScoreStart
*/
*/
public
StaffPerformSummaryQuery
goworkScoreStart
(
BigDecimal
goworkScoreStart
){
public
StaffPerformSummaryQuery
goworkScoreStart
(
BigDecimal
goworkScoreStart
){
this
.
goworkScoreStart
=
goworkScoreStart
;
this
.
goworkScoreStart
=
goworkScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 办件绩效分数
* 设置 结束 办件绩效分数
* @param goworkScoreEnd
* @param goworkScoreEnd
*/
*/
public
StaffPerformSummaryQuery
goworkScoreEnd
(
BigDecimal
goworkScoreEnd
){
public
StaffPerformSummaryQuery
goworkScoreEnd
(
BigDecimal
goworkScoreEnd
){
this
.
goworkScoreEnd
=
goworkScoreEnd
;
this
.
goworkScoreEnd
=
goworkScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 办件绩效分数
* 设置 增加 办件绩效分数
* @param goworkScoreIncrement
* @param goworkScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
goworkScoreIncrement
(
BigDecimal
goworkScoreIncrement
){
public
StaffPerformSummaryQuery
goworkScoreIncrement
(
BigDecimal
goworkScoreIncrement
){
this
.
goworkScoreIncrement
=
goworkScoreIncrement
;
this
.
goworkScoreIncrement
=
goworkScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 办件绩效分数
* 设置 办件绩效分数
* @param goworkScoreList
* @param goworkScoreList
*/
*/
public
StaffPerformSummaryQuery
goworkScoreList
(
List
<
BigDecimal
>
goworkScoreList
){
public
StaffPerformSummaryQuery
goworkScoreList
(
List
<
BigDecimal
>
goworkScoreList
){
this
.
goworkScoreList
=
goworkScoreList
;
this
.
goworkScoreList
=
goworkScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 办件绩效分数
* 设置 办件绩效分数
* @param goworkScoreNotList
* @param goworkScoreNotList
*/
*/
public
StaffPerformSummaryQuery
goworkScoreNotList
(
List
<
BigDecimal
>
goworkScoreNotList
){
public
StaffPerformSummaryQuery
goworkScoreNotList
(
List
<
BigDecimal
>
goworkScoreNotList
){
this
.
goworkScoreNotList
=
goworkScoreNotList
;
this
.
goworkScoreNotList
=
goworkScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 效能绩效分数
* 设置 效能绩效分数
* @param effectScore
* @param effectScore
*/
*/
public
StaffPerformSummaryQuery
effectScore
(
BigDecimal
effectScore
){
public
StaffPerformSummaryQuery
effectScore
(
BigDecimal
effectScore
){
setEffectScore
(
effectScore
);
setEffectScore
(
effectScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 效能绩效分数
* 设置 开始 效能绩效分数
* @param effectScoreStart
* @param effectScoreStart
*/
*/
public
StaffPerformSummaryQuery
effectScoreStart
(
BigDecimal
effectScoreStart
){
public
StaffPerformSummaryQuery
effectScoreStart
(
BigDecimal
effectScoreStart
){
this
.
effectScoreStart
=
effectScoreStart
;
this
.
effectScoreStart
=
effectScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 效能绩效分数
* 设置 结束 效能绩效分数
* @param effectScoreEnd
* @param effectScoreEnd
*/
*/
public
StaffPerformSummaryQuery
effectScoreEnd
(
BigDecimal
effectScoreEnd
){
public
StaffPerformSummaryQuery
effectScoreEnd
(
BigDecimal
effectScoreEnd
){
this
.
effectScoreEnd
=
effectScoreEnd
;
this
.
effectScoreEnd
=
effectScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 效能绩效分数
* 设置 增加 效能绩效分数
* @param effectScoreIncrement
* @param effectScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
effectScoreIncrement
(
BigDecimal
effectScoreIncrement
){
public
StaffPerformSummaryQuery
effectScoreIncrement
(
BigDecimal
effectScoreIncrement
){
this
.
effectScoreIncrement
=
effectScoreIncrement
;
this
.
effectScoreIncrement
=
effectScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 效能绩效分数
* 设置 效能绩效分数
* @param effectScoreList
* @param effectScoreList
*/
*/
public
StaffPerformSummaryQuery
effectScoreList
(
List
<
BigDecimal
>
effectScoreList
){
public
StaffPerformSummaryQuery
effectScoreList
(
List
<
BigDecimal
>
effectScoreList
){
this
.
effectScoreList
=
effectScoreList
;
this
.
effectScoreList
=
effectScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 效能绩效分数
* 设置 效能绩效分数
* @param effectScoreNotList
* @param effectScoreNotList
*/
*/
public
StaffPerformSummaryQuery
effectScoreNotList
(
List
<
BigDecimal
>
effectScoreNotList
){
public
StaffPerformSummaryQuery
effectScoreNotList
(
List
<
BigDecimal
>
effectScoreNotList
){
this
.
effectScoreNotList
=
effectScoreNotList
;
this
.
effectScoreNotList
=
effectScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 其它绩效分数
* 设置 其它绩效分数
* @param otherScore
* @param otherScore
*/
*/
public
StaffPerformSummaryQuery
otherScore
(
BigDecimal
otherScore
){
public
StaffPerformSummaryQuery
otherScore
(
BigDecimal
otherScore
){
setOtherScore
(
otherScore
);
setOtherScore
(
otherScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 其它绩效分数
* 设置 开始 其它绩效分数
* @param otherScoreStart
* @param otherScoreStart
*/
*/
public
StaffPerformSummaryQuery
otherScoreStart
(
BigDecimal
otherScoreStart
){
public
StaffPerformSummaryQuery
otherScoreStart
(
BigDecimal
otherScoreStart
){
this
.
otherScoreStart
=
otherScoreStart
;
this
.
otherScoreStart
=
otherScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 其它绩效分数
* 设置 结束 其它绩效分数
* @param otherScoreEnd
* @param otherScoreEnd
*/
*/
public
StaffPerformSummaryQuery
otherScoreEnd
(
BigDecimal
otherScoreEnd
){
public
StaffPerformSummaryQuery
otherScoreEnd
(
BigDecimal
otherScoreEnd
){
this
.
otherScoreEnd
=
otherScoreEnd
;
this
.
otherScoreEnd
=
otherScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 其它绩效分数
* 设置 增加 其它绩效分数
* @param otherScoreIncrement
* @param otherScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
otherScoreIncrement
(
BigDecimal
otherScoreIncrement
){
public
StaffPerformSummaryQuery
otherScoreIncrement
(
BigDecimal
otherScoreIncrement
){
this
.
otherScoreIncrement
=
otherScoreIncrement
;
this
.
otherScoreIncrement
=
otherScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 其它绩效分数
* 设置 其它绩效分数
* @param otherScoreList
* @param otherScoreList
*/
*/
public
StaffPerformSummaryQuery
otherScoreList
(
List
<
BigDecimal
>
otherScoreList
){
public
StaffPerformSummaryQuery
otherScoreList
(
List
<
BigDecimal
>
otherScoreList
){
this
.
otherScoreList
=
otherScoreList
;
this
.
otherScoreList
=
otherScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 其它绩效分数
* 设置 其它绩效分数
* @param otherScoreNotList
* @param otherScoreNotList
*/
*/
public
StaffPerformSummaryQuery
otherScoreNotList
(
List
<
BigDecimal
>
otherScoreNotList
){
public
StaffPerformSummaryQuery
otherScoreNotList
(
List
<
BigDecimal
>
otherScoreNotList
){
this
.
otherScoreNotList
=
otherScoreNotList
;
this
.
otherScoreNotList
=
otherScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 累计异常分数
* 设置 累计异常分数
* @param errorScore
* @param errorScore
*/
*/
public
StaffPerformSummaryQuery
errorScore
(
BigDecimal
errorScore
){
public
StaffPerformSummaryQuery
errorScore
(
BigDecimal
errorScore
){
setErrorScore
(
errorScore
);
setErrorScore
(
errorScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 累计异常分数
* 设置 开始 累计异常分数
* @param errorScoreStart
* @param errorScoreStart
*/
*/
public
StaffPerformSummaryQuery
errorScoreStart
(
BigDecimal
errorScoreStart
){
public
StaffPerformSummaryQuery
errorScoreStart
(
BigDecimal
errorScoreStart
){
this
.
errorScoreStart
=
errorScoreStart
;
this
.
errorScoreStart
=
errorScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 累计异常分数
* 设置 结束 累计异常分数
* @param errorScoreEnd
* @param errorScoreEnd
*/
*/
public
StaffPerformSummaryQuery
errorScoreEnd
(
BigDecimal
errorScoreEnd
){
public
StaffPerformSummaryQuery
errorScoreEnd
(
BigDecimal
errorScoreEnd
){
this
.
errorScoreEnd
=
errorScoreEnd
;
this
.
errorScoreEnd
=
errorScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 累计异常分数
* 设置 增加 累计异常分数
* @param errorScoreIncrement
* @param errorScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
errorScoreIncrement
(
BigDecimal
errorScoreIncrement
){
public
StaffPerformSummaryQuery
errorScoreIncrement
(
BigDecimal
errorScoreIncrement
){
this
.
errorScoreIncrement
=
errorScoreIncrement
;
this
.
errorScoreIncrement
=
errorScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 累计异常分数
* 设置 累计异常分数
* @param errorScoreList
* @param errorScoreList
*/
*/
public
StaffPerformSummaryQuery
errorScoreList
(
List
<
BigDecimal
>
errorScoreList
){
public
StaffPerformSummaryQuery
errorScoreList
(
List
<
BigDecimal
>
errorScoreList
){
this
.
errorScoreList
=
errorScoreList
;
this
.
errorScoreList
=
errorScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 累计异常分数
* 设置 累计异常分数
* @param errorScoreNotList
* @param errorScoreNotList
*/
*/
public
StaffPerformSummaryQuery
errorScoreNotList
(
List
<
BigDecimal
>
errorScoreNotList
){
public
StaffPerformSummaryQuery
errorScoreNotList
(
List
<
BigDecimal
>
errorScoreNotList
){
this
.
errorScoreNotList
=
errorScoreNotList
;
this
.
errorScoreNotList
=
errorScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 当月得分数
* 设置 当月得分数
* @param totalScore
* @param totalScore
*/
*/
public
StaffPerformSummaryQuery
totalScore
(
BigDecimal
totalScore
){
public
StaffPerformSummaryQuery
totalScore
(
BigDecimal
totalScore
){
setTotalScore
(
totalScore
);
setTotalScore
(
totalScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 当月得分数
* 设置 开始 当月得分数
* @param totalScoreStart
* @param totalScoreStart
*/
*/
public
StaffPerformSummaryQuery
totalScoreStart
(
BigDecimal
totalScoreStart
){
public
StaffPerformSummaryQuery
totalScoreStart
(
BigDecimal
totalScoreStart
){
this
.
totalScoreStart
=
totalScoreStart
;
this
.
totalScoreStart
=
totalScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 当月得分数
* 设置 结束 当月得分数
* @param totalScoreEnd
* @param totalScoreEnd
*/
*/
public
StaffPerformSummaryQuery
totalScoreEnd
(
BigDecimal
totalScoreEnd
){
public
StaffPerformSummaryQuery
totalScoreEnd
(
BigDecimal
totalScoreEnd
){
this
.
totalScoreEnd
=
totalScoreEnd
;
this
.
totalScoreEnd
=
totalScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 当月得分数
* 设置 增加 当月得分数
* @param totalScoreIncrement
* @param totalScoreIncrement
*/
*/
public
StaffPerformSummaryQuery
totalScoreIncrement
(
BigDecimal
totalScoreIncrement
){
public
StaffPerformSummaryQuery
totalScoreIncrement
(
BigDecimal
totalScoreIncrement
){
this
.
totalScoreIncrement
=
totalScoreIncrement
;
this
.
totalScoreIncrement
=
totalScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 当月得分数
* 设置 当月得分数
* @param totalScoreList
* @param totalScoreList
*/
*/
public
StaffPerformSummaryQuery
totalScoreList
(
List
<
BigDecimal
>
totalScoreList
){
public
StaffPerformSummaryQuery
totalScoreList
(
List
<
BigDecimal
>
totalScoreList
){
this
.
totalScoreList
=
totalScoreList
;
this
.
totalScoreList
=
totalScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 当月得分数
* 设置 当月得分数
* @param totalScoreNotList
* @param totalScoreNotList
*/
*/
public
StaffPerformSummaryQuery
totalScoreNotList
(
List
<
BigDecimal
>
totalScoreNotList
){
public
StaffPerformSummaryQuery
totalScoreNotList
(
List
<
BigDecimal
>
totalScoreNotList
){
this
.
totalScoreNotList
=
totalScoreNotList
;
this
.
totalScoreNotList
=
totalScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remark
* @param remark
*/
*/
public
StaffPerformSummaryQuery
remark
(
String
remark
){
public
StaffPerformSummaryQuery
remark
(
String
remark
){
setRemark
(
remark
);
setRemark
(
remark
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remarkList
* @param remarkList
*/
*/
public
StaffPerformSummaryQuery
remarkList
(
List
<
String
>
remarkList
){
public
StaffPerformSummaryQuery
remarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
this
.
remarkList
=
remarkList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 年
* 设置 年
* @param year
* @param year
*/
*/
public
StaffPerformSummaryQuery
year
(
Integer
year
){
public
StaffPerformSummaryQuery
year
(
Integer
year
){
setYear
(
year
);
setYear
(
year
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 年
* 设置 开始 年
* @param yearStart
* @param yearStart
*/
*/
public
StaffPerformSummaryQuery
yearStart
(
Integer
yearStart
){
public
StaffPerformSummaryQuery
yearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
this
.
yearStart
=
yearStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 年
* 设置 结束 年
* @param yearEnd
* @param yearEnd
*/
*/
public
StaffPerformSummaryQuery
yearEnd
(
Integer
yearEnd
){
public
StaffPerformSummaryQuery
yearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
this
.
yearEnd
=
yearEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 年
* 设置 增加 年
* @param yearIncrement
* @param yearIncrement
*/
*/
public
StaffPerformSummaryQuery
yearIncrement
(
Integer
yearIncrement
){
public
StaffPerformSummaryQuery
yearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
this
.
yearIncrement
=
yearIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 年
* 设置 年
* @param yearList
* @param yearList
*/
*/
public
StaffPerformSummaryQuery
yearList
(
List
<
Integer
>
yearList
){
public
StaffPerformSummaryQuery
yearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
this
.
yearList
=
yearList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 年
* 设置 年
* @param yearNotList
* @param yearNotList
*/
*/
public
StaffPerformSummaryQuery
yearNotList
(
List
<
Integer
>
yearNotList
){
public
StaffPerformSummaryQuery
yearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
this
.
yearNotList
=
yearNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 月
* 设置 月
* @param month
* @param month
*/
*/
public
StaffPerformSummaryQuery
month
(
Integer
month
){
public
StaffPerformSummaryQuery
month
(
Integer
month
){
setMonth
(
month
);
setMonth
(
month
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 月
* 设置 开始 月
* @param monthStart
* @param monthStart
*/
*/
public
StaffPerformSummaryQuery
monthStart
(
Integer
monthStart
){
public
StaffPerformSummaryQuery
monthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
this
.
monthStart
=
monthStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 月
* 设置 结束 月
* @param monthEnd
* @param monthEnd
*/
*/
public
StaffPerformSummaryQuery
monthEnd
(
Integer
monthEnd
){
public
StaffPerformSummaryQuery
monthEnd
(
Integer
monthEnd
){
this
.
monthEnd
=
monthEnd
;
this
.
monthEnd
=
monthEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 月
* 设置 增加 月
* @param monthIncrement
* @param monthIncrement
*/
*/
public
StaffPerformSummaryQuery
monthIncrement
(
Integer
monthIncrement
){
public
StaffPerformSummaryQuery
monthIncrement
(
Integer
monthIncrement
){
this
.
monthIncrement
=
monthIncrement
;
this
.
monthIncrement
=
monthIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 月
* 设置 月
* @param monthList
* @param monthList
*/
*/
public
StaffPerformSummaryQuery
monthList
(
List
<
Integer
>
monthList
){
public
StaffPerformSummaryQuery
monthList
(
List
<
Integer
>
monthList
){
this
.
monthList
=
monthList
;
this
.
monthList
=
monthList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 月
* 设置 月
* @param monthNotList
* @param monthNotList
*/
*/
public
StaffPerformSummaryQuery
monthNotList
(
List
<
Integer
>
monthNotList
){
public
StaffPerformSummaryQuery
monthNotList
(
List
<
Integer
>
monthNotList
){
this
.
monthNotList
=
monthNotList
;
this
.
monthNotList
=
monthNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建人id
* 设置 创建人id
* @param createUserId
* @param createUserId
*/
*/
public
StaffPerformSummaryQuery
createUserId
(
Long
createUserId
){
public
StaffPerformSummaryQuery
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
setCreateUserId
(
createUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 创建人id
* 设置 开始 创建人id
* @param createUserIdStart
* @param createUserIdStart
*/
*/
public
StaffPerformSummaryQuery
createUserIdStart
(
Long
createUserIdStart
){
public
StaffPerformSummaryQuery
createUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
this
.
createUserIdStart
=
createUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 创建人id
* 设置 结束 创建人id
* @param createUserIdEnd
* @param createUserIdEnd
*/
*/
public
StaffPerformSummaryQuery
createUserIdEnd
(
Long
createUserIdEnd
){
public
StaffPerformSummaryQuery
createUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
this
.
createUserIdEnd
=
createUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 创建人id
* 设置 增加 创建人id
* @param createUserIdIncrement
* @param createUserIdIncrement
*/
*/
public
StaffPerformSummaryQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
public
StaffPerformSummaryQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
this
.
createUserIdIncrement
=
createUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建人id
* 设置 创建人id
* @param createUserIdList
* @param createUserIdList
*/
*/
public
StaffPerformSummaryQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
public
StaffPerformSummaryQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
this
.
createUserIdList
=
createUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建人id
* 设置 创建人id
* @param createUserIdNotList
* @param createUserIdNotList
*/
*/
public
StaffPerformSummaryQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
public
StaffPerformSummaryQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
this
.
createUserIdNotList
=
createUserIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新人id
* 设置 更新人id
* @param updateUserId
* @param updateUserId
*/
*/
public
StaffPerformSummaryQuery
updateUserId
(
Long
updateUserId
){
public
StaffPerformSummaryQuery
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
setUpdateUserId
(
updateUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 更新人id
* 设置 开始 更新人id
* @param updateUserIdStart
* @param updateUserIdStart
*/
*/
public
StaffPerformSummaryQuery
updateUserIdStart
(
Long
updateUserIdStart
){
public
StaffPerformSummaryQuery
updateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
this
.
updateUserIdStart
=
updateUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 更新人id
* 设置 结束 更新人id
* @param updateUserIdEnd
* @param updateUserIdEnd
*/
*/
public
StaffPerformSummaryQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
public
StaffPerformSummaryQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
this
.
updateUserIdEnd
=
updateUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 更新人id
* 设置 增加 更新人id
* @param updateUserIdIncrement
* @param updateUserIdIncrement
*/
*/
public
StaffPerformSummaryQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
public
StaffPerformSummaryQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新人id
* 设置 更新人id
* @param updateUserIdList
* @param updateUserIdList
*/
*/
public
StaffPerformSummaryQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
public
StaffPerformSummaryQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
this
.
updateUserIdList
=
updateUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新人id
* 设置 更新人id
* @param updateUserIdNotList
* @param updateUserIdNotList
*/
*/
public
StaffPerformSummaryQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
public
StaffPerformSummaryQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
this
.
updateUserIdNotList
=
updateUserIdNotList
;
return
this
;
return
this
;
}
}
/**
* 设置 所属中心
* @param belongCenter
*/
public
StaffPerformSummaryQuery
belongCenter
(
String
belongCenter
){
setBelongCenter
(
belongCenter
);
return
this
;
}
/**
* 设置 所属中心
* @param belongCenterList
*/
public
StaffPerformSummaryQuery
belongCenterList
(
List
<
String
>
belongCenterList
){
this
.
belongCenterList
=
belongCenterList
;
return
this
;
}
/**
/**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList
* @return orConditionList
*/
*/
public
List
<
StaffPerformSummaryQuery
>
getOrConditionList
(){
public
List
<
StaffPerformSummaryQuery
>
getOrConditionList
(){
return
this
.
orConditionList
;
return
this
.
orConditionList
;
}
}
/**
/**
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList
* @param orConditionList
*/
*/
public
void
setOrConditionList
(
List
<
StaffPerformSummaryQuery
>
orConditionList
){
public
void
setOrConditionList
(
List
<
StaffPerformSummaryQuery
>
orConditionList
){
this
.
orConditionList
=
orConditionList
;
this
.
orConditionList
=
orConditionList
;
}
}
/**
/**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList
* @return andConditionList
*/
*/
public
List
<
StaffPerformSummaryQuery
>
getAndConditionList
(){
public
List
<
StaffPerformSummaryQuery
>
getAndConditionList
(){
return
this
.
andConditionList
;
return
this
.
andConditionList
;
}
}
/**
/**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList
* @param andConditionList
*/
*/
public
void
setAndConditionList
(
List
<
StaffPerformSummaryQuery
>
andConditionList
){
public
void
setAndConditionList
(
List
<
StaffPerformSummaryQuery
>
andConditionList
){
this
.
andConditionList
=
andConditionList
;
this
.
andConditionList
=
andConditionList
;
}
}
...
...
attendance-performance-manager/src/main/resources/sqlmap/module/staff/StaffPerformSummaryMapper.xml
View file @
7a16b11e
This source diff could not be displayed because it is too large. You can
view the blob
instead.
db/add.sql
View file @
7a16b11e
...
@@ -767,3 +767,5 @@ ALTER TABLE mortals_xhx_attendance_stat ADD COLUMN `goTimes` int(9) default
...
@@ -767,3 +767,5 @@ ALTER TABLE mortals_xhx_attendance_stat ADD COLUMN `goTimes` int(9) default
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`morningTimes`
int
(
9
)
default
0
COMMENT
'上午缺卡次数'
AFTER
goTimes
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`morningTimes`
int
(
9
)
default
0
COMMENT
'上午缺卡次数'
AFTER
goTimes
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`afternoonTimes`
int
(
9
)
default
0
COMMENT
'下午缺卡次数'
AFTER
morningTimes
;
ALTER
TABLE
mortals_xhx_attendance_stat
ADD
COLUMN
`afternoonTimes`
int
(
9
)
default
0
COMMENT
'下午缺卡次数'
AFTER
morningTimes
;
ALTER
TABLE
mortals_xhx_staff_perform_summary
ADD
COLUMN
`belongCenter`
varchar
(
512
)
DEFAULT
'宜宾市民中心'
COMMENT
'所属中心'
AFTER
staffName
;
doc/考勤绩效管理系统.docx
View file @
7a16b11e
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