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
b75bef0d
Commit
b75bef0d
authored
Jan 30, 2024
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
窗口人员考核汇总明细增加字段
parent
fd32a241
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2473 additions
and
1816 deletions
+2473
-1816
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformDetailEntity.java
...module/window/model/WindowWorkmanPerformDetailEntity.java
+63
-43
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformDetailQuery.java
.../module/window/model/WindowWorkmanPerformDetailQuery.java
+1341
-929
attendance-performance-manager/src/main/resources/sqlmap/module/window/WindowWorkmanPerformDetailMapper.xml
...sqlmap/module/window/WindowWorkmanPerformDetailMapper.xml
+1059
-843
attendance-performance-manager/src/main/resources/sqlmap/module/window/WindowWorkmanPerformMapper.xml
...urces/sqlmap/module/window/WindowWorkmanPerformMapper.xml
+5
-1
db/add.sql
db/add.sql
+5
-0
doc/考勤绩效管理系统.docx
doc/考勤绩效管理系统.docx
+0
-0
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformDetailEntity.java
View file @
b75bef0d
...
@@ -11,66 +11,82 @@ import com.mortals.framework.model.BaseEntityLong;
...
@@ -11,66 +11,82 @@ import com.mortals.framework.model.BaseEntityLong;
import
com.mortals.xhx.module.window.model.vo.WindowWorkmanPerformDetailVo
;
import
com.mortals.xhx.module.window.model.vo.WindowWorkmanPerformDetailVo
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
* 窗口人员考核汇总明细实体对象
* 窗口人员考核汇总明细实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2024-01-17
* @date 2024-01-30
*/
*/
@Data
@Data
public
class
WindowWorkmanPerformDetailEntity
extends
WindowWorkmanPerformDetailVo
{
public
class
WindowWorkmanPerformDetailEntity
extends
WindowWorkmanPerformDetailVo
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
* 人员考核汇总表主键
* 人员考核汇总表主键
*/
*/
private
Long
performId
;
private
Long
performId
;
/**
/**
* 工作人员id
* 工作人员id
*/
*/
private
Long
staffId
;
private
Long
staffId
;
/**
/**
* 工作人员名称
* 工作人员名称
*/
*/
private
String
staffName
;
private
String
staffName
;
/**
/**
* 工作纪律得分
* 工作纪律得分
*/
*/
private
BigDecimal
discipline
;
private
BigDecimal
discipline
;
/**
/**
* 服务规范得分
* 服务规范得分
*/
*/
private
BigDecimal
specification
;
private
BigDecimal
specification
;
/**
/**
* 综合管理得分
* 综合管理得分
*/
*/
private
BigDecimal
management
;
private
BigDecimal
management
;
/**
/**
* 群众评议得分
* 群众评议得分
*/
*/
private
BigDecimal
evaluation
;
private
BigDecimal
evaluation
;
/**
/**
* 工作效能得分
* 工作效能得分
*/
*/
private
BigDecimal
efficiency
;
private
BigDecimal
efficiency
;
/**
/**
* 加分
* 加分
*/
*/
private
BigDecimal
bonusScore
;
private
BigDecimal
bonusScore
;
/**
/**
* 合计得分
* 合计得分
*/
*/
private
BigDecimal
sumScore
;
private
BigDecimal
sumScore
;
/**
/**
* 考核等级1好2较好3一般4较差
* 考核等级1好2较好3一般4较差
*/
*/
private
Integer
examineLevel
;
private
Integer
examineLevel
;
/**
/**
* 备注
* 备注
*/
*/
private
String
remark
;
private
String
remark
;
/**
* 所属部门id
*/
private
Long
deptId
;
/**
* 所属部门名称
*/
private
String
deptName
;
/**
* 所属大厅
*/
private
Long
salaId
;
/**
* 所属大厅名称
*/
private
String
salaName
;
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
}
}
@Override
@Override
public
boolean
equals
(
Object
obj
)
{
public
boolean
equals
(
Object
obj
)
{
...
@@ -78,24 +94,28 @@ public class WindowWorkmanPerformDetailEntity extends WindowWorkmanPerformDetail
...
@@ -78,24 +94,28 @@ public class WindowWorkmanPerformDetailEntity extends WindowWorkmanPerformDetail
if
(
obj
instanceof
WindowWorkmanPerformDetailEntity
)
{
if
(
obj
instanceof
WindowWorkmanPerformDetailEntity
)
{
WindowWorkmanPerformDetailEntity
tmp
=
(
WindowWorkmanPerformDetailEntity
)
obj
;
WindowWorkmanPerformDetailEntity
tmp
=
(
WindowWorkmanPerformDetailEntity
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
return
true
;
}
}
}
}
return
false
;
return
false
;
}
}
public
void
initAttrValue
(){
public
void
initAttrValue
(){
this
.
performId
=
null
;
this
.
performId
=
null
;
this
.
staffId
=
null
;
this
.
staffId
=
null
;
this
.
staffName
=
""
;
this
.
staffName
=
""
;
this
.
discipline
=
BigDecimal
.
ZERO
;
this
.
discipline
=
BigDecimal
.
ZERO
;
this
.
specification
=
BigDecimal
.
ZERO
;
this
.
specification
=
BigDecimal
.
ZERO
;
this
.
management
=
BigDecimal
.
ZERO
;
this
.
management
=
BigDecimal
.
ZERO
;
this
.
evaluation
=
BigDecimal
.
ZERO
;
this
.
evaluation
=
BigDecimal
.
ZERO
;
this
.
efficiency
=
BigDecimal
.
ZERO
;
this
.
efficiency
=
BigDecimal
.
ZERO
;
this
.
bonusScore
=
BigDecimal
.
ZERO
;
this
.
bonusScore
=
BigDecimal
.
ZERO
;
this
.
sumScore
=
BigDecimal
.
ZERO
;
this
.
sumScore
=
BigDecimal
.
ZERO
;
this
.
examineLevel
=
0
;
this
.
examineLevel
=
0
;
this
.
remark
=
""
;
this
.
remark
=
""
;
this
.
deptId
=
null
;
this
.
deptName
=
""
;
this
.
salaId
=
null
;
this
.
salaName
=
""
;
}
}
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformDetailQuery.java
View file @
b75bef0d
...
@@ -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.window.model.WindowWorkmanPerformDetailEntity
;
import
com.mortals.xhx.module.window.model.WindowWorkmanPerformDetailEntity
;
/**
/**
* 窗口人员考核汇总明细查询对象
* 窗口人员考核汇总明细查询对象
*
*
* @author zxfei
* @author zxfei
* @date 2024-01-17
* @date 2024-01-30
*/
*/
public
class
WindowWorkmanPerformDetailQuery
extends
WindowWorkmanPerformDetailEntity
{
public
class
WindowWorkmanPerformDetailQuery
extends
WindowWorkmanPerformDetailEntity
{
/** 开始 序号,主键,自增长 */
/** 开始 序号,主键,自增长 */
private
Long
idStart
;
private
Long
idStart
;
...
@@ -227,6 +227,46 @@ public class WindowWorkmanPerformDetailQuery extends WindowWorkmanPerformDetailE
...
@@ -227,6 +227,46 @@ public class WindowWorkmanPerformDetailQuery extends WindowWorkmanPerformDetailE
/** 结束 更新时间 */
/** 结束 更新时间 */
private
String
updateTimeEnd
;
private
String
updateTimeEnd
;
/** 开始 所属部门id */
private
Long
deptIdStart
;
/** 结束 所属部门id */
private
Long
deptIdEnd
;
/** 增加 所属部门id */
private
Long
deptIdIncrement
;
/** 所属部门id列表 */
private
List
<
Long
>
deptIdList
;
/** 所属部门id排除列表 */
private
List
<
Long
>
deptIdNotList
;
/** 所属部门名称 */
private
List
<
String
>
deptNameList
;
/** 所属部门名称排除列表 */
private
List
<
String
>
deptNameNotList
;
/** 开始 所属大厅 */
private
Long
salaIdStart
;
/** 结束 所属大厅 */
private
Long
salaIdEnd
;
/** 增加 所属大厅 */
private
Long
salaIdIncrement
;
/** 所属大厅列表 */
private
List
<
Long
>
salaIdList
;
/** 所属大厅排除列表 */
private
List
<
Long
>
salaIdNotList
;
/** 所属大厅名称 */
private
List
<
String
>
salaNameList
;
/** 所属大厅名称排除列表 */
private
List
<
String
>
salaNameNotList
;
/** 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
<
WindowWorkmanPerformDetailQuery
>
orConditionList
;
private
List
<
WindowWorkmanPerformDetailQuery
>
orConditionList
;
...
@@ -236,1956 +276,2328 @@ public class WindowWorkmanPerformDetailQuery extends WindowWorkmanPerformDetailE
...
@@ -236,1956 +276,2328 @@ public class WindowWorkmanPerformDetailQuery extends WindowWorkmanPerformDetailE
public
WindowWorkmanPerformDetailQuery
(){}
public
WindowWorkmanPerformDetailQuery
(){}
/**
/**
* 获取 开始 序号,主键,自增长
* 获取 开始 序号,主键,自增长
* @return idStart
* @return idStart
*/
*/
public
Long
getIdStart
(){
public
Long
getIdStart
(){
return
this
.
idStart
;
return
this
.
idStart
;
}
}
/**
/**
* 设置 开始 序号,主键,自增长
* 设置 开始 序号,主键,自增长
* @param idStart
* @param idStart
*/
*/
public
void
setIdStart
(
Long
idStart
){
public
void
setIdStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
this
.
idStart
=
idStart
;
}
}
/**
/**
* 获取 结束 序号,主键,自增长
* 获取 结束 序号,主键,自增长
* @return $idEnd
* @return $idEnd
*/
*/
public
Long
getIdEnd
(){
public
Long
getIdEnd
(){
return
this
.
idEnd
;
return
this
.
idEnd
;
}
}
/**
/**
* 设置 结束 序号,主键,自增长
* 设置 结束 序号,主键,自增长
* @param idEnd
* @param idEnd
*/
*/
public
void
setIdEnd
(
Long
idEnd
){
public
void
setIdEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
this
.
idEnd
=
idEnd
;
}
}
/**
/**
* 获取 增加 序号,主键,自增长
* 获取 增加 序号,主键,自增长
* @return idIncrement
* @return idIncrement
*/
*/
public
Long
getIdIncrement
(){
public
Long
getIdIncrement
(){
return
this
.
idIncrement
;
return
this
.
idIncrement
;
}
}
/**
/**
* 设置 增加 序号,主键,自增长
* 设置 增加 序号,主键,自增长
* @param idIncrement
* @param idIncrement
*/
*/
public
void
setIdIncrement
(
Long
idIncrement
){
public
void
setIdIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
this
.
idIncrement
=
idIncrement
;
}
}
/**
/**
* 获取 序号,主键,自增长
* 获取 序号,主键,自增长
* @return idList
* @return idList
*/
*/
public
List
<
Long
>
getIdList
(){
public
List
<
Long
>
getIdList
(){
return
this
.
idList
;
return
this
.
idList
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idList
* @param idList
*/
*/
public
void
setIdList
(
List
<
Long
>
idList
){
public
void
setIdList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
this
.
idList
=
idList
;
}
}
/**
/**
* 获取 序号,主键,自增长
* 获取 序号,主键,自增长
* @return idNotList
* @return idNotList
*/
*/
public
List
<
Long
>
getIdNotList
(){
public
List
<
Long
>
getIdNotList
(){
return
this
.
idNotList
;
return
this
.
idNotList
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idNotList
* @param idNotList
*/
*/
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
public
void
setIdNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
this
.
idNotList
=
idNotList
;
}
}
/**
/**
* 获取 开始 人员考核汇总表主键
* 获取 开始 人员考核汇总表主键
* @return performIdStart
* @return performIdStart
*/
*/
public
Long
getPerformIdStart
(){
public
Long
getPerformIdStart
(){
return
this
.
performIdStart
;
return
this
.
performIdStart
;
}
}
/**
/**
* 设置 开始 人员考核汇总表主键
* 设置 开始 人员考核汇总表主键
* @param performIdStart
* @param performIdStart
*/
*/
public
void
setPerformIdStart
(
Long
performIdStart
){
public
void
setPerformIdStart
(
Long
performIdStart
){
this
.
performIdStart
=
performIdStart
;
this
.
performIdStart
=
performIdStart
;
}
}
/**
/**
* 获取 结束 人员考核汇总表主键
* 获取 结束 人员考核汇总表主键
* @return $performIdEnd
* @return $performIdEnd
*/
*/
public
Long
getPerformIdEnd
(){
public
Long
getPerformIdEnd
(){
return
this
.
performIdEnd
;
return
this
.
performIdEnd
;
}
}
/**
/**
* 设置 结束 人员考核汇总表主键
* 设置 结束 人员考核汇总表主键
* @param performIdEnd
* @param performIdEnd
*/
*/
public
void
setPerformIdEnd
(
Long
performIdEnd
){
public
void
setPerformIdEnd
(
Long
performIdEnd
){
this
.
performIdEnd
=
performIdEnd
;
this
.
performIdEnd
=
performIdEnd
;
}
}
/**
/**
* 获取 增加 人员考核汇总表主键
* 获取 增加 人员考核汇总表主键
* @return performIdIncrement
* @return performIdIncrement
*/
*/
public
Long
getPerformIdIncrement
(){
public
Long
getPerformIdIncrement
(){
return
this
.
performIdIncrement
;
return
this
.
performIdIncrement
;
}
}
/**
/**
* 设置 增加 人员考核汇总表主键
* 设置 增加 人员考核汇总表主键
* @param performIdIncrement
* @param performIdIncrement
*/
*/
public
void
setPerformIdIncrement
(
Long
performIdIncrement
){
public
void
setPerformIdIncrement
(
Long
performIdIncrement
){
this
.
performIdIncrement
=
performIdIncrement
;
this
.
performIdIncrement
=
performIdIncrement
;
}
}
/**
/**
* 获取 人员考核汇总表主键
* 获取 人员考核汇总表主键
* @return performIdList
* @return performIdList
*/
*/
public
List
<
Long
>
getPerformIdList
(){
public
List
<
Long
>
getPerformIdList
(){
return
this
.
performIdList
;
return
this
.
performIdList
;
}
}
/**
/**
* 设置 人员考核汇总表主键
* 设置 人员考核汇总表主键
* @param performIdList
* @param performIdList
*/
*/
public
void
setPerformIdList
(
List
<
Long
>
performIdList
){
public
void
setPerformIdList
(
List
<
Long
>
performIdList
){
this
.
performIdList
=
performIdList
;
this
.
performIdList
=
performIdList
;
}
}
/**
/**
* 获取 人员考核汇总表主键
* 获取 人员考核汇总表主键
* @return performIdNotList
* @return performIdNotList
*/
*/
public
List
<
Long
>
getPerformIdNotList
(){
public
List
<
Long
>
getPerformIdNotList
(){
return
this
.
performIdNotList
;
return
this
.
performIdNotList
;
}
}
/**
/**
* 设置 人员考核汇总表主键
* 设置 人员考核汇总表主键
* @param performIdNotList
* @param performIdNotList
*/
*/
public
void
setPerformIdNotList
(
List
<
Long
>
performIdNotList
){
public
void
setPerformIdNotList
(
List
<
Long
>
performIdNotList
){
this
.
performIdNotList
=
performIdNotList
;
this
.
performIdNotList
=
performIdNotList
;
}
}
/**
/**
* 获取 开始 工作人员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 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
;
}
}
/**
/**
* 获取 开始 工作纪律得分
* 获取 开始 工作纪律得分
* @return disciplineStart
* @return disciplineStart
*/
*/
public
BigDecimal
getDisciplineStart
(){
public
BigDecimal
getDisciplineStart
(){
return
this
.
disciplineStart
;
return
this
.
disciplineStart
;
}
}
/**
/**
* 设置 开始 工作纪律得分
* 设置 开始 工作纪律得分
* @param disciplineStart
* @param disciplineStart
*/
*/
public
void
setDisciplineStart
(
BigDecimal
disciplineStart
){
public
void
setDisciplineStart
(
BigDecimal
disciplineStart
){
this
.
disciplineStart
=
disciplineStart
;
this
.
disciplineStart
=
disciplineStart
;
}
}
/**
/**
* 获取 结束 工作纪律得分
* 获取 结束 工作纪律得分
* @return $disciplineEnd
* @return $disciplineEnd
*/
*/
public
BigDecimal
getDisciplineEnd
(){
public
BigDecimal
getDisciplineEnd
(){
return
this
.
disciplineEnd
;
return
this
.
disciplineEnd
;
}
}
/**
/**
* 设置 结束 工作纪律得分
* 设置 结束 工作纪律得分
* @param disciplineEnd
* @param disciplineEnd
*/
*/
public
void
setDisciplineEnd
(
BigDecimal
disciplineEnd
){
public
void
setDisciplineEnd
(
BigDecimal
disciplineEnd
){
this
.
disciplineEnd
=
disciplineEnd
;
this
.
disciplineEnd
=
disciplineEnd
;
}
}
/**
/**
* 获取 增加 工作纪律得分
* 获取 增加 工作纪律得分
* @return disciplineIncrement
* @return disciplineIncrement
*/
*/
public
BigDecimal
getDisciplineIncrement
(){
public
BigDecimal
getDisciplineIncrement
(){
return
this
.
disciplineIncrement
;
return
this
.
disciplineIncrement
;
}
}
/**
/**
* 设置 增加 工作纪律得分
* 设置 增加 工作纪律得分
* @param disciplineIncrement
* @param disciplineIncrement
*/
*/
public
void
setDisciplineIncrement
(
BigDecimal
disciplineIncrement
){
public
void
setDisciplineIncrement
(
BigDecimal
disciplineIncrement
){
this
.
disciplineIncrement
=
disciplineIncrement
;
this
.
disciplineIncrement
=
disciplineIncrement
;
}
}
/**
/**
* 获取 工作纪律得分
* 获取 工作纪律得分
* @return disciplineList
* @return disciplineList
*/
*/
public
List
<
BigDecimal
>
getDisciplineList
(){
public
List
<
BigDecimal
>
getDisciplineList
(){
return
this
.
disciplineList
;
return
this
.
disciplineList
;
}
}
/**
/**
* 设置 工作纪律得分
* 设置 工作纪律得分
* @param disciplineList
* @param disciplineList
*/
*/
public
void
setDisciplineList
(
List
<
BigDecimal
>
disciplineList
){
public
void
setDisciplineList
(
List
<
BigDecimal
>
disciplineList
){
this
.
disciplineList
=
disciplineList
;
this
.
disciplineList
=
disciplineList
;
}
}
/**
/**
* 获取 工作纪律得分
* 获取 工作纪律得分
* @return disciplineNotList
* @return disciplineNotList
*/
*/
public
List
<
BigDecimal
>
getDisciplineNotList
(){
public
List
<
BigDecimal
>
getDisciplineNotList
(){
return
this
.
disciplineNotList
;
return
this
.
disciplineNotList
;
}
}
/**
/**
* 设置 工作纪律得分
* 设置 工作纪律得分
* @param disciplineNotList
* @param disciplineNotList
*/
*/
public
void
setDisciplineNotList
(
List
<
BigDecimal
>
disciplineNotList
){
public
void
setDisciplineNotList
(
List
<
BigDecimal
>
disciplineNotList
){
this
.
disciplineNotList
=
disciplineNotList
;
this
.
disciplineNotList
=
disciplineNotList
;
}
}
/**
/**
* 获取 开始 服务规范得分
* 获取 开始 服务规范得分
* @return specificationStart
* @return specificationStart
*/
*/
public
BigDecimal
getSpecificationStart
(){
public
BigDecimal
getSpecificationStart
(){
return
this
.
specificationStart
;
return
this
.
specificationStart
;
}
}
/**
/**
* 设置 开始 服务规范得分
* 设置 开始 服务规范得分
* @param specificationStart
* @param specificationStart
*/
*/
public
void
setSpecificationStart
(
BigDecimal
specificationStart
){
public
void
setSpecificationStart
(
BigDecimal
specificationStart
){
this
.
specificationStart
=
specificationStart
;
this
.
specificationStart
=
specificationStart
;
}
}
/**
/**
* 获取 结束 服务规范得分
* 获取 结束 服务规范得分
* @return $specificationEnd
* @return $specificationEnd
*/
*/
public
BigDecimal
getSpecificationEnd
(){
public
BigDecimal
getSpecificationEnd
(){
return
this
.
specificationEnd
;
return
this
.
specificationEnd
;
}
}
/**
/**
* 设置 结束 服务规范得分
* 设置 结束 服务规范得分
* @param specificationEnd
* @param specificationEnd
*/
*/
public
void
setSpecificationEnd
(
BigDecimal
specificationEnd
){
public
void
setSpecificationEnd
(
BigDecimal
specificationEnd
){
this
.
specificationEnd
=
specificationEnd
;
this
.
specificationEnd
=
specificationEnd
;
}
}
/**
/**
* 获取 增加 服务规范得分
* 获取 增加 服务规范得分
* @return specificationIncrement
* @return specificationIncrement
*/
*/
public
BigDecimal
getSpecificationIncrement
(){
public
BigDecimal
getSpecificationIncrement
(){
return
this
.
specificationIncrement
;
return
this
.
specificationIncrement
;
}
}
/**
/**
* 设置 增加 服务规范得分
* 设置 增加 服务规范得分
* @param specificationIncrement
* @param specificationIncrement
*/
*/
public
void
setSpecificationIncrement
(
BigDecimal
specificationIncrement
){
public
void
setSpecificationIncrement
(
BigDecimal
specificationIncrement
){
this
.
specificationIncrement
=
specificationIncrement
;
this
.
specificationIncrement
=
specificationIncrement
;
}
}
/**
/**
* 获取 服务规范得分
* 获取 服务规范得分
* @return specificationList
* @return specificationList
*/
*/
public
List
<
BigDecimal
>
getSpecificationList
(){
public
List
<
BigDecimal
>
getSpecificationList
(){
return
this
.
specificationList
;
return
this
.
specificationList
;
}
}
/**
/**
* 设置 服务规范得分
* 设置 服务规范得分
* @param specificationList
* @param specificationList
*/
*/
public
void
setSpecificationList
(
List
<
BigDecimal
>
specificationList
){
public
void
setSpecificationList
(
List
<
BigDecimal
>
specificationList
){
this
.
specificationList
=
specificationList
;
this
.
specificationList
=
specificationList
;
}
}
/**
/**
* 获取 服务规范得分
* 获取 服务规范得分
* @return specificationNotList
* @return specificationNotList
*/
*/
public
List
<
BigDecimal
>
getSpecificationNotList
(){
public
List
<
BigDecimal
>
getSpecificationNotList
(){
return
this
.
specificationNotList
;
return
this
.
specificationNotList
;
}
}
/**
/**
* 设置 服务规范得分
* 设置 服务规范得分
* @param specificationNotList
* @param specificationNotList
*/
*/
public
void
setSpecificationNotList
(
List
<
BigDecimal
>
specificationNotList
){
public
void
setSpecificationNotList
(
List
<
BigDecimal
>
specificationNotList
){
this
.
specificationNotList
=
specificationNotList
;
this
.
specificationNotList
=
specificationNotList
;
}
}
/**
/**
* 获取 开始 综合管理得分
* 获取 开始 综合管理得分
* @return managementStart
* @return managementStart
*/
*/
public
BigDecimal
getManagementStart
(){
public
BigDecimal
getManagementStart
(){
return
this
.
managementStart
;
return
this
.
managementStart
;
}
}
/**
/**
* 设置 开始 综合管理得分
* 设置 开始 综合管理得分
* @param managementStart
* @param managementStart
*/
*/
public
void
setManagementStart
(
BigDecimal
managementStart
){
public
void
setManagementStart
(
BigDecimal
managementStart
){
this
.
managementStart
=
managementStart
;
this
.
managementStart
=
managementStart
;
}
}
/**
/**
* 获取 结束 综合管理得分
* 获取 结束 综合管理得分
* @return $managementEnd
* @return $managementEnd
*/
*/
public
BigDecimal
getManagementEnd
(){
public
BigDecimal
getManagementEnd
(){
return
this
.
managementEnd
;
return
this
.
managementEnd
;
}
}
/**
/**
* 设置 结束 综合管理得分
* 设置 结束 综合管理得分
* @param managementEnd
* @param managementEnd
*/
*/
public
void
setManagementEnd
(
BigDecimal
managementEnd
){
public
void
setManagementEnd
(
BigDecimal
managementEnd
){
this
.
managementEnd
=
managementEnd
;
this
.
managementEnd
=
managementEnd
;
}
}
/**
/**
* 获取 增加 综合管理得分
* 获取 增加 综合管理得分
* @return managementIncrement
* @return managementIncrement
*/
*/
public
BigDecimal
getManagementIncrement
(){
public
BigDecimal
getManagementIncrement
(){
return
this
.
managementIncrement
;
return
this
.
managementIncrement
;
}
}
/**
/**
* 设置 增加 综合管理得分
* 设置 增加 综合管理得分
* @param managementIncrement
* @param managementIncrement
*/
*/
public
void
setManagementIncrement
(
BigDecimal
managementIncrement
){
public
void
setManagementIncrement
(
BigDecimal
managementIncrement
){
this
.
managementIncrement
=
managementIncrement
;
this
.
managementIncrement
=
managementIncrement
;
}
}
/**
/**
* 获取 综合管理得分
* 获取 综合管理得分
* @return managementList
* @return managementList
*/
*/
public
List
<
BigDecimal
>
getManagementList
(){
public
List
<
BigDecimal
>
getManagementList
(){
return
this
.
managementList
;
return
this
.
managementList
;
}
}
/**
/**
* 设置 综合管理得分
* 设置 综合管理得分
* @param managementList
* @param managementList
*/
*/
public
void
setManagementList
(
List
<
BigDecimal
>
managementList
){
public
void
setManagementList
(
List
<
BigDecimal
>
managementList
){
this
.
managementList
=
managementList
;
this
.
managementList
=
managementList
;
}
}
/**
/**
* 获取 综合管理得分
* 获取 综合管理得分
* @return managementNotList
* @return managementNotList
*/
*/
public
List
<
BigDecimal
>
getManagementNotList
(){
public
List
<
BigDecimal
>
getManagementNotList
(){
return
this
.
managementNotList
;
return
this
.
managementNotList
;
}
}
/**
/**
* 设置 综合管理得分
* 设置 综合管理得分
* @param managementNotList
* @param managementNotList
*/
*/
public
void
setManagementNotList
(
List
<
BigDecimal
>
managementNotList
){
public
void
setManagementNotList
(
List
<
BigDecimal
>
managementNotList
){
this
.
managementNotList
=
managementNotList
;
this
.
managementNotList
=
managementNotList
;
}
}
/**
/**
* 获取 开始 群众评议得分
* 获取 开始 群众评议得分
* @return evaluationStart
* @return evaluationStart
*/
*/
public
BigDecimal
getEvaluationStart
(){
public
BigDecimal
getEvaluationStart
(){
return
this
.
evaluationStart
;
return
this
.
evaluationStart
;
}
}
/**
/**
* 设置 开始 群众评议得分
* 设置 开始 群众评议得分
* @param evaluationStart
* @param evaluationStart
*/
*/
public
void
setEvaluationStart
(
BigDecimal
evaluationStart
){
public
void
setEvaluationStart
(
BigDecimal
evaluationStart
){
this
.
evaluationStart
=
evaluationStart
;
this
.
evaluationStart
=
evaluationStart
;
}
}
/**
/**
* 获取 结束 群众评议得分
* 获取 结束 群众评议得分
* @return $evaluationEnd
* @return $evaluationEnd
*/
*/
public
BigDecimal
getEvaluationEnd
(){
public
BigDecimal
getEvaluationEnd
(){
return
this
.
evaluationEnd
;
return
this
.
evaluationEnd
;
}
}
/**
/**
* 设置 结束 群众评议得分
* 设置 结束 群众评议得分
* @param evaluationEnd
* @param evaluationEnd
*/
*/
public
void
setEvaluationEnd
(
BigDecimal
evaluationEnd
){
public
void
setEvaluationEnd
(
BigDecimal
evaluationEnd
){
this
.
evaluationEnd
=
evaluationEnd
;
this
.
evaluationEnd
=
evaluationEnd
;
}
}
/**
/**
* 获取 增加 群众评议得分
* 获取 增加 群众评议得分
* @return evaluationIncrement
* @return evaluationIncrement
*/
*/
public
BigDecimal
getEvaluationIncrement
(){
public
BigDecimal
getEvaluationIncrement
(){
return
this
.
evaluationIncrement
;
return
this
.
evaluationIncrement
;
}
}
/**
/**
* 设置 增加 群众评议得分
* 设置 增加 群众评议得分
* @param evaluationIncrement
* @param evaluationIncrement
*/
*/
public
void
setEvaluationIncrement
(
BigDecimal
evaluationIncrement
){
public
void
setEvaluationIncrement
(
BigDecimal
evaluationIncrement
){
this
.
evaluationIncrement
=
evaluationIncrement
;
this
.
evaluationIncrement
=
evaluationIncrement
;
}
}
/**
/**
* 获取 群众评议得分
* 获取 群众评议得分
* @return evaluationList
* @return evaluationList
*/
*/
public
List
<
BigDecimal
>
getEvaluationList
(){
public
List
<
BigDecimal
>
getEvaluationList
(){
return
this
.
evaluationList
;
return
this
.
evaluationList
;
}
}
/**
/**
* 设置 群众评议得分
* 设置 群众评议得分
* @param evaluationList
* @param evaluationList
*/
*/
public
void
setEvaluationList
(
List
<
BigDecimal
>
evaluationList
){
public
void
setEvaluationList
(
List
<
BigDecimal
>
evaluationList
){
this
.
evaluationList
=
evaluationList
;
this
.
evaluationList
=
evaluationList
;
}
}
/**
/**
* 获取 群众评议得分
* 获取 群众评议得分
* @return evaluationNotList
* @return evaluationNotList
*/
*/
public
List
<
BigDecimal
>
getEvaluationNotList
(){
public
List
<
BigDecimal
>
getEvaluationNotList
(){
return
this
.
evaluationNotList
;
return
this
.
evaluationNotList
;
}
}
/**
/**
* 设置 群众评议得分
* 设置 群众评议得分
* @param evaluationNotList
* @param evaluationNotList
*/
*/
public
void
setEvaluationNotList
(
List
<
BigDecimal
>
evaluationNotList
){
public
void
setEvaluationNotList
(
List
<
BigDecimal
>
evaluationNotList
){
this
.
evaluationNotList
=
evaluationNotList
;
this
.
evaluationNotList
=
evaluationNotList
;
}
}
/**
/**
* 获取 开始 工作效能得分
* 获取 开始 工作效能得分
* @return efficiencyStart
* @return efficiencyStart
*/
*/
public
BigDecimal
getEfficiencyStart
(){
public
BigDecimal
getEfficiencyStart
(){
return
this
.
efficiencyStart
;
return
this
.
efficiencyStart
;
}
}
/**
/**
* 设置 开始 工作效能得分
* 设置 开始 工作效能得分
* @param efficiencyStart
* @param efficiencyStart
*/
*/
public
void
setEfficiencyStart
(
BigDecimal
efficiencyStart
){
public
void
setEfficiencyStart
(
BigDecimal
efficiencyStart
){
this
.
efficiencyStart
=
efficiencyStart
;
this
.
efficiencyStart
=
efficiencyStart
;
}
}
/**
/**
* 获取 结束 工作效能得分
* 获取 结束 工作效能得分
* @return $efficiencyEnd
* @return $efficiencyEnd
*/
*/
public
BigDecimal
getEfficiencyEnd
(){
public
BigDecimal
getEfficiencyEnd
(){
return
this
.
efficiencyEnd
;
return
this
.
efficiencyEnd
;
}
}
/**
/**
* 设置 结束 工作效能得分
* 设置 结束 工作效能得分
* @param efficiencyEnd
* @param efficiencyEnd
*/
*/
public
void
setEfficiencyEnd
(
BigDecimal
efficiencyEnd
){
public
void
setEfficiencyEnd
(
BigDecimal
efficiencyEnd
){
this
.
efficiencyEnd
=
efficiencyEnd
;
this
.
efficiencyEnd
=
efficiencyEnd
;
}
}
/**
/**
* 获取 增加 工作效能得分
* 获取 增加 工作效能得分
* @return efficiencyIncrement
* @return efficiencyIncrement
*/
*/
public
BigDecimal
getEfficiencyIncrement
(){
public
BigDecimal
getEfficiencyIncrement
(){
return
this
.
efficiencyIncrement
;
return
this
.
efficiencyIncrement
;
}
}
/**
/**
* 设置 增加 工作效能得分
* 设置 增加 工作效能得分
* @param efficiencyIncrement
* @param efficiencyIncrement
*/
*/
public
void
setEfficiencyIncrement
(
BigDecimal
efficiencyIncrement
){
public
void
setEfficiencyIncrement
(
BigDecimal
efficiencyIncrement
){
this
.
efficiencyIncrement
=
efficiencyIncrement
;
this
.
efficiencyIncrement
=
efficiencyIncrement
;
}
}
/**
/**
* 获取 工作效能得分
* 获取 工作效能得分
* @return efficiencyList
* @return efficiencyList
*/
*/
public
List
<
BigDecimal
>
getEfficiencyList
(){
public
List
<
BigDecimal
>
getEfficiencyList
(){
return
this
.
efficiencyList
;
return
this
.
efficiencyList
;
}
}
/**
/**
* 设置 工作效能得分
* 设置 工作效能得分
* @param efficiencyList
* @param efficiencyList
*/
*/
public
void
setEfficiencyList
(
List
<
BigDecimal
>
efficiencyList
){
public
void
setEfficiencyList
(
List
<
BigDecimal
>
efficiencyList
){
this
.
efficiencyList
=
efficiencyList
;
this
.
efficiencyList
=
efficiencyList
;
}
}
/**
/**
* 获取 工作效能得分
* 获取 工作效能得分
* @return efficiencyNotList
* @return efficiencyNotList
*/
*/
public
List
<
BigDecimal
>
getEfficiencyNotList
(){
public
List
<
BigDecimal
>
getEfficiencyNotList
(){
return
this
.
efficiencyNotList
;
return
this
.
efficiencyNotList
;
}
}
/**
/**
* 设置 工作效能得分
* 设置 工作效能得分
* @param efficiencyNotList
* @param efficiencyNotList
*/
*/
public
void
setEfficiencyNotList
(
List
<
BigDecimal
>
efficiencyNotList
){
public
void
setEfficiencyNotList
(
List
<
BigDecimal
>
efficiencyNotList
){
this
.
efficiencyNotList
=
efficiencyNotList
;
this
.
efficiencyNotList
=
efficiencyNotList
;
}
}
/**
/**
* 获取 开始 加分
* 获取 开始 加分
* @return bonusScoreStart
* @return bonusScoreStart
*/
*/
public
BigDecimal
getBonusScoreStart
(){
public
BigDecimal
getBonusScoreStart
(){
return
this
.
bonusScoreStart
;
return
this
.
bonusScoreStart
;
}
}
/**
/**
* 设置 开始 加分
* 设置 开始 加分
* @param bonusScoreStart
* @param bonusScoreStart
*/
*/
public
void
setBonusScoreStart
(
BigDecimal
bonusScoreStart
){
public
void
setBonusScoreStart
(
BigDecimal
bonusScoreStart
){
this
.
bonusScoreStart
=
bonusScoreStart
;
this
.
bonusScoreStart
=
bonusScoreStart
;
}
}
/**
/**
* 获取 结束 加分
* 获取 结束 加分
* @return $bonusScoreEnd
* @return $bonusScoreEnd
*/
*/
public
BigDecimal
getBonusScoreEnd
(){
public
BigDecimal
getBonusScoreEnd
(){
return
this
.
bonusScoreEnd
;
return
this
.
bonusScoreEnd
;
}
}
/**
/**
* 设置 结束 加分
* 设置 结束 加分
* @param bonusScoreEnd
* @param bonusScoreEnd
*/
*/
public
void
setBonusScoreEnd
(
BigDecimal
bonusScoreEnd
){
public
void
setBonusScoreEnd
(
BigDecimal
bonusScoreEnd
){
this
.
bonusScoreEnd
=
bonusScoreEnd
;
this
.
bonusScoreEnd
=
bonusScoreEnd
;
}
}
/**
/**
* 获取 增加 加分
* 获取 增加 加分
* @return bonusScoreIncrement
* @return bonusScoreIncrement
*/
*/
public
BigDecimal
getBonusScoreIncrement
(){
public
BigDecimal
getBonusScoreIncrement
(){
return
this
.
bonusScoreIncrement
;
return
this
.
bonusScoreIncrement
;
}
}
/**
/**
* 设置 增加 加分
* 设置 增加 加分
* @param bonusScoreIncrement
* @param bonusScoreIncrement
*/
*/
public
void
setBonusScoreIncrement
(
BigDecimal
bonusScoreIncrement
){
public
void
setBonusScoreIncrement
(
BigDecimal
bonusScoreIncrement
){
this
.
bonusScoreIncrement
=
bonusScoreIncrement
;
this
.
bonusScoreIncrement
=
bonusScoreIncrement
;
}
}
/**
/**
* 获取 加分
* 获取 加分
* @return bonusScoreList
* @return bonusScoreList
*/
*/
public
List
<
BigDecimal
>
getBonusScoreList
(){
public
List
<
BigDecimal
>
getBonusScoreList
(){
return
this
.
bonusScoreList
;
return
this
.
bonusScoreList
;
}
}
/**
/**
* 设置 加分
* 设置 加分
* @param bonusScoreList
* @param bonusScoreList
*/
*/
public
void
setBonusScoreList
(
List
<
BigDecimal
>
bonusScoreList
){
public
void
setBonusScoreList
(
List
<
BigDecimal
>
bonusScoreList
){
this
.
bonusScoreList
=
bonusScoreList
;
this
.
bonusScoreList
=
bonusScoreList
;
}
}
/**
/**
* 获取 加分
* 获取 加分
* @return bonusScoreNotList
* @return bonusScoreNotList
*/
*/
public
List
<
BigDecimal
>
getBonusScoreNotList
(){
public
List
<
BigDecimal
>
getBonusScoreNotList
(){
return
this
.
bonusScoreNotList
;
return
this
.
bonusScoreNotList
;
}
}
/**
/**
* 设置 加分
* 设置 加分
* @param bonusScoreNotList
* @param bonusScoreNotList
*/
*/
public
void
setBonusScoreNotList
(
List
<
BigDecimal
>
bonusScoreNotList
){
public
void
setBonusScoreNotList
(
List
<
BigDecimal
>
bonusScoreNotList
){
this
.
bonusScoreNotList
=
bonusScoreNotList
;
this
.
bonusScoreNotList
=
bonusScoreNotList
;
}
}
/**
/**
* 获取 开始 合计得分
* 获取 开始 合计得分
* @return sumScoreStart
* @return sumScoreStart
*/
*/
public
BigDecimal
getSumScoreStart
(){
public
BigDecimal
getSumScoreStart
(){
return
this
.
sumScoreStart
;
return
this
.
sumScoreStart
;
}
}
/**
/**
* 设置 开始 合计得分
* 设置 开始 合计得分
* @param sumScoreStart
* @param sumScoreStart
*/
*/
public
void
setSumScoreStart
(
BigDecimal
sumScoreStart
){
public
void
setSumScoreStart
(
BigDecimal
sumScoreStart
){
this
.
sumScoreStart
=
sumScoreStart
;
this
.
sumScoreStart
=
sumScoreStart
;
}
}
/**
/**
* 获取 结束 合计得分
* 获取 结束 合计得分
* @return $sumScoreEnd
* @return $sumScoreEnd
*/
*/
public
BigDecimal
getSumScoreEnd
(){
public
BigDecimal
getSumScoreEnd
(){
return
this
.
sumScoreEnd
;
return
this
.
sumScoreEnd
;
}
}
/**
/**
* 设置 结束 合计得分
* 设置 结束 合计得分
* @param sumScoreEnd
* @param sumScoreEnd
*/
*/
public
void
setSumScoreEnd
(
BigDecimal
sumScoreEnd
){
public
void
setSumScoreEnd
(
BigDecimal
sumScoreEnd
){
this
.
sumScoreEnd
=
sumScoreEnd
;
this
.
sumScoreEnd
=
sumScoreEnd
;
}
}
/**
/**
* 获取 增加 合计得分
* 获取 增加 合计得分
* @return sumScoreIncrement
* @return sumScoreIncrement
*/
*/
public
BigDecimal
getSumScoreIncrement
(){
public
BigDecimal
getSumScoreIncrement
(){
return
this
.
sumScoreIncrement
;
return
this
.
sumScoreIncrement
;
}
}
/**
/**
* 设置 增加 合计得分
* 设置 增加 合计得分
* @param sumScoreIncrement
* @param sumScoreIncrement
*/
*/
public
void
setSumScoreIncrement
(
BigDecimal
sumScoreIncrement
){
public
void
setSumScoreIncrement
(
BigDecimal
sumScoreIncrement
){
this
.
sumScoreIncrement
=
sumScoreIncrement
;
this
.
sumScoreIncrement
=
sumScoreIncrement
;
}
}
/**
/**
* 获取 合计得分
* 获取 合计得分
* @return sumScoreList
* @return sumScoreList
*/
*/
public
List
<
BigDecimal
>
getSumScoreList
(){
public
List
<
BigDecimal
>
getSumScoreList
(){
return
this
.
sumScoreList
;
return
this
.
sumScoreList
;
}
}
/**
/**
* 设置 合计得分
* 设置 合计得分
* @param sumScoreList
* @param sumScoreList
*/
*/
public
void
setSumScoreList
(
List
<
BigDecimal
>
sumScoreList
){
public
void
setSumScoreList
(
List
<
BigDecimal
>
sumScoreList
){
this
.
sumScoreList
=
sumScoreList
;
this
.
sumScoreList
=
sumScoreList
;
}
}
/**
/**
* 获取 合计得分
* 获取 合计得分
* @return sumScoreNotList
* @return sumScoreNotList
*/
*/
public
List
<
BigDecimal
>
getSumScoreNotList
(){
public
List
<
BigDecimal
>
getSumScoreNotList
(){
return
this
.
sumScoreNotList
;
return
this
.
sumScoreNotList
;
}
}
/**
/**
* 设置 合计得分
* 设置 合计得分
* @param sumScoreNotList
* @param sumScoreNotList
*/
*/
public
void
setSumScoreNotList
(
List
<
BigDecimal
>
sumScoreNotList
){
public
void
setSumScoreNotList
(
List
<
BigDecimal
>
sumScoreNotList
){
this
.
sumScoreNotList
=
sumScoreNotList
;
this
.
sumScoreNotList
=
sumScoreNotList
;
}
}
/**
/**
* 获取 开始 考核等级1好2较好3一般4较差
* 获取 开始 考核等级1好2较好3一般4较差
* @return examineLevelStart
* @return examineLevelStart
*/
*/
public
Integer
getExamineLevelStart
(){
public
Integer
getExamineLevelStart
(){
return
this
.
examineLevelStart
;
return
this
.
examineLevelStart
;
}
}
/**
/**
* 设置 开始 考核等级1好2较好3一般4较差
* 设置 开始 考核等级1好2较好3一般4较差
* @param examineLevelStart
* @param examineLevelStart
*/
*/
public
void
setExamineLevelStart
(
Integer
examineLevelStart
){
public
void
setExamineLevelStart
(
Integer
examineLevelStart
){
this
.
examineLevelStart
=
examineLevelStart
;
this
.
examineLevelStart
=
examineLevelStart
;
}
}
/**
/**
* 获取 结束 考核等级1好2较好3一般4较差
* 获取 结束 考核等级1好2较好3一般4较差
* @return $examineLevelEnd
* @return $examineLevelEnd
*/
*/
public
Integer
getExamineLevelEnd
(){
public
Integer
getExamineLevelEnd
(){
return
this
.
examineLevelEnd
;
return
this
.
examineLevelEnd
;
}
}
/**
/**
* 设置 结束 考核等级1好2较好3一般4较差
* 设置 结束 考核等级1好2较好3一般4较差
* @param examineLevelEnd
* @param examineLevelEnd
*/
*/
public
void
setExamineLevelEnd
(
Integer
examineLevelEnd
){
public
void
setExamineLevelEnd
(
Integer
examineLevelEnd
){
this
.
examineLevelEnd
=
examineLevelEnd
;
this
.
examineLevelEnd
=
examineLevelEnd
;
}
}
/**
/**
* 获取 增加 考核等级1好2较好3一般4较差
* 获取 增加 考核等级1好2较好3一般4较差
* @return examineLevelIncrement
* @return examineLevelIncrement
*/
*/
public
Integer
getExamineLevelIncrement
(){
public
Integer
getExamineLevelIncrement
(){
return
this
.
examineLevelIncrement
;
return
this
.
examineLevelIncrement
;
}
}
/**
/**
* 设置 增加 考核等级1好2较好3一般4较差
* 设置 增加 考核等级1好2较好3一般4较差
* @param examineLevelIncrement
* @param examineLevelIncrement
*/
*/
public
void
setExamineLevelIncrement
(
Integer
examineLevelIncrement
){
public
void
setExamineLevelIncrement
(
Integer
examineLevelIncrement
){
this
.
examineLevelIncrement
=
examineLevelIncrement
;
this
.
examineLevelIncrement
=
examineLevelIncrement
;
}
}
/**
/**
* 获取 考核等级1好2较好3一般4较差
* 获取 考核等级1好2较好3一般4较差
* @return examineLevelList
* @return examineLevelList
*/
*/
public
List
<
Integer
>
getExamineLevelList
(){
public
List
<
Integer
>
getExamineLevelList
(){
return
this
.
examineLevelList
;
return
this
.
examineLevelList
;
}
}
/**
/**
* 设置 考核等级1好2较好3一般4较差
* 设置 考核等级1好2较好3一般4较差
* @param examineLevelList
* @param examineLevelList
*/
*/
public
void
setExamineLevelList
(
List
<
Integer
>
examineLevelList
){
public
void
setExamineLevelList
(
List
<
Integer
>
examineLevelList
){
this
.
examineLevelList
=
examineLevelList
;
this
.
examineLevelList
=
examineLevelList
;
}
}
/**
/**
* 获取 考核等级1好2较好3一般4较差
* 获取 考核等级1好2较好3一般4较差
* @return examineLevelNotList
* @return examineLevelNotList
*/
*/
public
List
<
Integer
>
getExamineLevelNotList
(){
public
List
<
Integer
>
getExamineLevelNotList
(){
return
this
.
examineLevelNotList
;
return
this
.
examineLevelNotList
;
}
}
/**
/**
* 设置 考核等级1好2较好3一般4较差
* 设置 考核等级1好2较好3一般4较差
* @param examineLevelNotList
* @param examineLevelNotList
*/
*/
public
void
setExamineLevelNotList
(
List
<
Integer
>
examineLevelNotList
){
public
void
setExamineLevelNotList
(
List
<
Integer
>
examineLevelNotList
){
this
.
examineLevelNotList
=
examineLevelNotList
;
this
.
examineLevelNotList
=
examineLevelNotList
;
}
}
/**
/**
* 获取 备注
* 获取 备注
* @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 createUserIdStart
* @return createUserIdStart
*/
*/
public
Long
getCreateUserIdStart
(){
public
Long
getCreateUserIdStart
(){
return
this
.
createUserIdStart
;
return
this
.
createUserIdStart
;
}
}
/**
/**
* 设置 开始 创建用户
* 设置 开始 创建用户
* @param createUserIdStart
* @param createUserIdStart
*/
*/
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
public
void
setCreateUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
this
.
createUserIdStart
=
createUserIdStart
;
}
}
/**
/**
* 获取 结束 创建用户
* 获取 结束 创建用户
* @return $createUserIdEnd
* @return $createUserIdEnd
*/
*/
public
Long
getCreateUserIdEnd
(){
public
Long
getCreateUserIdEnd
(){
return
this
.
createUserIdEnd
;
return
this
.
createUserIdEnd
;
}
}
/**
/**
* 设置 结束 创建用户
* 设置 结束 创建用户
* @param createUserIdEnd
* @param createUserIdEnd
*/
*/
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
public
void
setCreateUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
this
.
createUserIdEnd
=
createUserIdEnd
;
}
}
/**
/**
* 获取 增加 创建用户
* 获取 增加 创建用户
* @return createUserIdIncrement
* @return createUserIdIncrement
*/
*/
public
Long
getCreateUserIdIncrement
(){
public
Long
getCreateUserIdIncrement
(){
return
this
.
createUserIdIncrement
;
return
this
.
createUserIdIncrement
;
}
}
/**
/**
* 设置 增加 创建用户
* 设置 增加 创建用户
* @param createUserIdIncrement
* @param createUserIdIncrement
*/
*/
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
public
void
setCreateUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
this
.
createUserIdIncrement
=
createUserIdIncrement
;
}
}
/**
/**
* 获取 创建用户
* 获取 创建用户
* @return createUserIdList
* @return createUserIdList
*/
*/
public
List
<
Long
>
getCreateUserIdList
(){
public
List
<
Long
>
getCreateUserIdList
(){
return
this
.
createUserIdList
;
return
this
.
createUserIdList
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdList
* @param createUserIdList
*/
*/
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
public
void
setCreateUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
this
.
createUserIdList
=
createUserIdList
;
}
}
/**
/**
* 获取 创建用户
* 获取 创建用户
* @return createUserIdNotList
* @return createUserIdNotList
*/
*/
public
List
<
Long
>
getCreateUserIdNotList
(){
public
List
<
Long
>
getCreateUserIdNotList
(){
return
this
.
createUserIdNotList
;
return
this
.
createUserIdNotList
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdNotList
* @param createUserIdNotList
*/
*/
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
public
void
setCreateUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
this
.
createUserIdNotList
=
createUserIdNotList
;
}
}
/**
/**
* 获取 开始 创建时间
* 获取 开始 创建时间
* @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
;
}
}
/**
/**
* 获取 开始 更新用户
* 获取 开始 更新用户
* @return updateUserIdStart
* @return updateUserIdStart
*/
*/
public
Long
getUpdateUserIdStart
(){
public
Long
getUpdateUserIdStart
(){
return
this
.
updateUserIdStart
;
return
this
.
updateUserIdStart
;
}
}
/**
/**
* 设置 开始 更新用户
* 设置 开始 更新用户
* @param updateUserIdStart
* @param updateUserIdStart
*/
*/
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
public
void
setUpdateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
this
.
updateUserIdStart
=
updateUserIdStart
;
}
}
/**
/**
* 获取 结束 更新用户
* 获取 结束 更新用户
* @return $updateUserIdEnd
* @return $updateUserIdEnd
*/
*/
public
Long
getUpdateUserIdEnd
(){
public
Long
getUpdateUserIdEnd
(){
return
this
.
updateUserIdEnd
;
return
this
.
updateUserIdEnd
;
}
}
/**
/**
* 设置 结束 更新用户
* 设置 结束 更新用户
* @param updateUserIdEnd
* @param updateUserIdEnd
*/
*/
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
public
void
setUpdateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
this
.
updateUserIdEnd
=
updateUserIdEnd
;
}
}
/**
/**
* 获取 增加 更新用户
* 获取 增加 更新用户
* @return updateUserIdIncrement
* @return updateUserIdIncrement
*/
*/
public
Long
getUpdateUserIdIncrement
(){
public
Long
getUpdateUserIdIncrement
(){
return
this
.
updateUserIdIncrement
;
return
this
.
updateUserIdIncrement
;
}
}
/**
/**
* 设置 增加 更新用户
* 设置 增加 更新用户
* @param updateUserIdIncrement
* @param updateUserIdIncrement
*/
*/
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
public
void
setUpdateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
}
}
/**
/**
* 获取 更新用户
* 获取 更新用户
* @return updateUserIdList
* @return updateUserIdList
*/
*/
public
List
<
Long
>
getUpdateUserIdList
(){
public
List
<
Long
>
getUpdateUserIdList
(){
return
this
.
updateUserIdList
;
return
this
.
updateUserIdList
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdList
* @param updateUserIdList
*/
*/
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
public
void
setUpdateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
this
.
updateUserIdList
=
updateUserIdList
;
}
}
/**
/**
* 获取 更新用户
* 获取 更新用户
* @return updateUserIdNotList
* @return updateUserIdNotList
*/
*/
public
List
<
Long
>
getUpdateUserIdNotList
(){
public
List
<
Long
>
getUpdateUserIdNotList
(){
return
this
.
updateUserIdNotList
;
return
this
.
updateUserIdNotList
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdNotList
* @param updateUserIdNotList
*/
*/
public
void
setUpdateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
public
void
setUpdateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
this
.
updateUserIdNotList
=
updateUserIdNotList
;
}
}
/**
/**
* 获取 开始 更新时间
* 获取 开始 更新时间
* @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
* @param id
* @return deptIdStart
*/
*/
public
Long
getDeptIdStart
(){
return
this
.
deptIdStart
;
}
/**
* 设置 开始 所属部门id
* @param deptIdStart
*/
public
void
setDeptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
}
/**
* 获取 结束 所属部门id
* @return $deptIdEnd
*/
public
Long
getDeptIdEnd
(){
return
this
.
deptIdEnd
;
}
/**
* 设置 结束 所属部门id
* @param deptIdEnd
*/
public
void
setDeptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
}
/**
* 获取 增加 所属部门id
* @return deptIdIncrement
*/
public
Long
getDeptIdIncrement
(){
return
this
.
deptIdIncrement
;
}
/**
* 设置 增加 所属部门id
* @param deptIdIncrement
*/
public
void
setDeptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
}
/**
* 获取 所属部门id
* @return deptIdList
*/
public
List
<
Long
>
getDeptIdList
(){
return
this
.
deptIdList
;
}
/**
* 设置 所属部门id
* @param deptIdList
*/
public
void
setDeptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
}
/**
* 获取 所属部门id
* @return deptIdNotList
*/
public
List
<
Long
>
getDeptIdNotList
(){
return
this
.
deptIdNotList
;
}
/**
* 设置 所属部门id
* @param deptIdNotList
*/
public
void
setDeptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
}
/**
* 获取 所属部门名称
* @return deptNameList
*/
public
List
<
String
>
getDeptNameList
(){
return
this
.
deptNameList
;
}
/**
* 设置 所属部门名称
* @param deptNameList
*/
public
void
setDeptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
}
/**
* 获取 所属部门名称
* @return deptNameNotList
*/
public
List
<
String
>
getDeptNameNotList
(){
return
this
.
deptNameNotList
;
}
/**
* 设置 所属部门名称
* @param deptNameNotList
*/
public
void
setDeptNameNotList
(
List
<
String
>
deptNameNotList
){
this
.
deptNameNotList
=
deptNameNotList
;
}
/**
* 获取 开始 所属大厅
* @return salaIdStart
*/
public
Long
getSalaIdStart
(){
return
this
.
salaIdStart
;
}
/**
* 设置 开始 所属大厅
* @param salaIdStart
*/
public
void
setSalaIdStart
(
Long
salaIdStart
){
this
.
salaIdStart
=
salaIdStart
;
}
/**
* 获取 结束 所属大厅
* @return $salaIdEnd
*/
public
Long
getSalaIdEnd
(){
return
this
.
salaIdEnd
;
}
/**
* 设置 结束 所属大厅
* @param salaIdEnd
*/
public
void
setSalaIdEnd
(
Long
salaIdEnd
){
this
.
salaIdEnd
=
salaIdEnd
;
}
/**
* 获取 增加 所属大厅
* @return salaIdIncrement
*/
public
Long
getSalaIdIncrement
(){
return
this
.
salaIdIncrement
;
}
/**
* 设置 增加 所属大厅
* @param salaIdIncrement
*/
public
void
setSalaIdIncrement
(
Long
salaIdIncrement
){
this
.
salaIdIncrement
=
salaIdIncrement
;
}
/**
* 获取 所属大厅
* @return salaIdList
*/
public
List
<
Long
>
getSalaIdList
(){
return
this
.
salaIdList
;
}
/**
* 设置 所属大厅
* @param salaIdList
*/
public
void
setSalaIdList
(
List
<
Long
>
salaIdList
){
this
.
salaIdList
=
salaIdList
;
}
/**
* 获取 所属大厅
* @return salaIdNotList
*/
public
List
<
Long
>
getSalaIdNotList
(){
return
this
.
salaIdNotList
;
}
/**
* 设置 所属大厅
* @param salaIdNotList
*/
public
void
setSalaIdNotList
(
List
<
Long
>
salaIdNotList
){
this
.
salaIdNotList
=
salaIdNotList
;
}
/**
* 获取 所属大厅名称
* @return salaNameList
*/
public
List
<
String
>
getSalaNameList
(){
return
this
.
salaNameList
;
}
/**
* 设置 所属大厅名称
* @param salaNameList
*/
public
void
setSalaNameList
(
List
<
String
>
salaNameList
){
this
.
salaNameList
=
salaNameList
;
}
/**
* 获取 所属大厅名称
* @return salaNameNotList
*/
public
List
<
String
>
getSalaNameNotList
(){
return
this
.
salaNameNotList
;
}
/**
* 设置 所属大厅名称
* @param salaNameNotList
*/
public
void
setSalaNameNotList
(
List
<
String
>
salaNameNotList
){
this
.
salaNameNotList
=
salaNameNotList
;
}
/**
* 设置 序号,主键,自增长
* @param id
*/
public
WindowWorkmanPerformDetailQuery
id
(
Long
id
){
public
WindowWorkmanPerformDetailQuery
id
(
Long
id
){
setId
(
id
);
setId
(
id
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 序号,主键,自增长
* 设置 开始 序号,主键,自增长
* @param idStart
* @param idStart
*/
*/
public
WindowWorkmanPerformDetailQuery
idStart
(
Long
idStart
){
public
WindowWorkmanPerformDetailQuery
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
this
.
idStart
=
idStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 序号,主键,自增长
* 设置 结束 序号,主键,自增长
* @param idEnd
* @param idEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
idEnd
(
Long
idEnd
){
public
WindowWorkmanPerformDetailQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
this
.
idEnd
=
idEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 序号,主键,自增长
* 设置 增加 序号,主键,自增长
* @param idIncrement
* @param idIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
idIncrement
(
Long
idIncrement
){
public
WindowWorkmanPerformDetailQuery
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
this
.
idIncrement
=
idIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idList
* @param idList
*/
*/
public
WindowWorkmanPerformDetailQuery
idList
(
List
<
Long
>
idList
){
public
WindowWorkmanPerformDetailQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
this
.
idList
=
idList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idNotList
* @param idNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
idNotList
(
List
<
Long
>
idNotList
){
public
WindowWorkmanPerformDetailQuery
idNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
this
.
idNotList
=
idNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员考核汇总表主键
* 设置 人员考核汇总表主键
* @param performId
* @param performId
*/
*/
public
WindowWorkmanPerformDetailQuery
performId
(
Long
performId
){
public
WindowWorkmanPerformDetailQuery
performId
(
Long
performId
){
setPerformId
(
performId
);
setPerformId
(
performId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 人员考核汇总表主键
* 设置 开始 人员考核汇总表主键
* @param performIdStart
* @param performIdStart
*/
*/
public
WindowWorkmanPerformDetailQuery
performIdStart
(
Long
performIdStart
){
public
WindowWorkmanPerformDetailQuery
performIdStart
(
Long
performIdStart
){
this
.
performIdStart
=
performIdStart
;
this
.
performIdStart
=
performIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 人员考核汇总表主键
* 设置 结束 人员考核汇总表主键
* @param performIdEnd
* @param performIdEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
performIdEnd
(
Long
performIdEnd
){
public
WindowWorkmanPerformDetailQuery
performIdEnd
(
Long
performIdEnd
){
this
.
performIdEnd
=
performIdEnd
;
this
.
performIdEnd
=
performIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 人员考核汇总表主键
* 设置 增加 人员考核汇总表主键
* @param performIdIncrement
* @param performIdIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
performIdIncrement
(
Long
performIdIncrement
){
public
WindowWorkmanPerformDetailQuery
performIdIncrement
(
Long
performIdIncrement
){
this
.
performIdIncrement
=
performIdIncrement
;
this
.
performIdIncrement
=
performIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员考核汇总表主键
* 设置 人员考核汇总表主键
* @param performIdList
* @param performIdList
*/
*/
public
WindowWorkmanPerformDetailQuery
performIdList
(
List
<
Long
>
performIdList
){
public
WindowWorkmanPerformDetailQuery
performIdList
(
List
<
Long
>
performIdList
){
this
.
performIdList
=
performIdList
;
this
.
performIdList
=
performIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 人员考核汇总表主键
* 设置 人员考核汇总表主键
* @param performIdNotList
* @param performIdNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
performIdNotList
(
List
<
Long
>
performIdNotList
){
public
WindowWorkmanPerformDetailQuery
performIdNotList
(
List
<
Long
>
performIdNotList
){
this
.
performIdNotList
=
performIdNotList
;
this
.
performIdNotList
=
performIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作人员id
* 设置 工作人员id
* @param staffId
* @param staffId
*/
*/
public
WindowWorkmanPerformDetailQuery
staffId
(
Long
staffId
){
public
WindowWorkmanPerformDetailQuery
staffId
(
Long
staffId
){
setStaffId
(
staffId
);
setStaffId
(
staffId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 工作人员id
* 设置 开始 工作人员id
* @param staffIdStart
* @param staffIdStart
*/
*/
public
WindowWorkmanPerformDetailQuery
staffIdStart
(
Long
staffIdStart
){
public
WindowWorkmanPerformDetailQuery
staffIdStart
(
Long
staffIdStart
){
this
.
staffIdStart
=
staffIdStart
;
this
.
staffIdStart
=
staffIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 工作人员id
* 设置 结束 工作人员id
* @param staffIdEnd
* @param staffIdEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
staffIdEnd
(
Long
staffIdEnd
){
public
WindowWorkmanPerformDetailQuery
staffIdEnd
(
Long
staffIdEnd
){
this
.
staffIdEnd
=
staffIdEnd
;
this
.
staffIdEnd
=
staffIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 工作人员id
* 设置 增加 工作人员id
* @param staffIdIncrement
* @param staffIdIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
staffIdIncrement
(
Long
staffIdIncrement
){
public
WindowWorkmanPerformDetailQuery
staffIdIncrement
(
Long
staffIdIncrement
){
this
.
staffIdIncrement
=
staffIdIncrement
;
this
.
staffIdIncrement
=
staffIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作人员id
* 设置 工作人员id
* @param staffIdList
* @param staffIdList
*/
*/
public
WindowWorkmanPerformDetailQuery
staffIdList
(
List
<
Long
>
staffIdList
){
public
WindowWorkmanPerformDetailQuery
staffIdList
(
List
<
Long
>
staffIdList
){
this
.
staffIdList
=
staffIdList
;
this
.
staffIdList
=
staffIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作人员id
* 设置 工作人员id
* @param staffIdNotList
* @param staffIdNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
staffIdNotList
(
List
<
Long
>
staffIdNotList
){
public
WindowWorkmanPerformDetailQuery
staffIdNotList
(
List
<
Long
>
staffIdNotList
){
this
.
staffIdNotList
=
staffIdNotList
;
this
.
staffIdNotList
=
staffIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作人员名称
* 设置 工作人员名称
* @param staffName
* @param staffName
*/
*/
public
WindowWorkmanPerformDetailQuery
staffName
(
String
staffName
){
public
WindowWorkmanPerformDetailQuery
staffName
(
String
staffName
){
setStaffName
(
staffName
);
setStaffName
(
staffName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作人员名称
* 设置 工作人员名称
* @param staffNameList
* @param staffNameList
*/
*/
public
WindowWorkmanPerformDetailQuery
staffNameList
(
List
<
String
>
staffNameList
){
public
WindowWorkmanPerformDetailQuery
staffNameList
(
List
<
String
>
staffNameList
){
this
.
staffNameList
=
staffNameList
;
this
.
staffNameList
=
staffNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作纪律得分
* 设置 工作纪律得分
* @param discipline
* @param discipline
*/
*/
public
WindowWorkmanPerformDetailQuery
discipline
(
BigDecimal
discipline
){
public
WindowWorkmanPerformDetailQuery
discipline
(
BigDecimal
discipline
){
setDiscipline
(
discipline
);
setDiscipline
(
discipline
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 工作纪律得分
* 设置 开始 工作纪律得分
* @param disciplineStart
* @param disciplineStart
*/
*/
public
WindowWorkmanPerformDetailQuery
disciplineStart
(
BigDecimal
disciplineStart
){
public
WindowWorkmanPerformDetailQuery
disciplineStart
(
BigDecimal
disciplineStart
){
this
.
disciplineStart
=
disciplineStart
;
this
.
disciplineStart
=
disciplineStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 工作纪律得分
* 设置 结束 工作纪律得分
* @param disciplineEnd
* @param disciplineEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
disciplineEnd
(
BigDecimal
disciplineEnd
){
public
WindowWorkmanPerformDetailQuery
disciplineEnd
(
BigDecimal
disciplineEnd
){
this
.
disciplineEnd
=
disciplineEnd
;
this
.
disciplineEnd
=
disciplineEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 工作纪律得分
* 设置 增加 工作纪律得分
* @param disciplineIncrement
* @param disciplineIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
disciplineIncrement
(
BigDecimal
disciplineIncrement
){
public
WindowWorkmanPerformDetailQuery
disciplineIncrement
(
BigDecimal
disciplineIncrement
){
this
.
disciplineIncrement
=
disciplineIncrement
;
this
.
disciplineIncrement
=
disciplineIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作纪律得分
* 设置 工作纪律得分
* @param disciplineList
* @param disciplineList
*/
*/
public
WindowWorkmanPerformDetailQuery
disciplineList
(
List
<
BigDecimal
>
disciplineList
){
public
WindowWorkmanPerformDetailQuery
disciplineList
(
List
<
BigDecimal
>
disciplineList
){
this
.
disciplineList
=
disciplineList
;
this
.
disciplineList
=
disciplineList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作纪律得分
* 设置 工作纪律得分
* @param disciplineNotList
* @param disciplineNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
disciplineNotList
(
List
<
BigDecimal
>
disciplineNotList
){
public
WindowWorkmanPerformDetailQuery
disciplineNotList
(
List
<
BigDecimal
>
disciplineNotList
){
this
.
disciplineNotList
=
disciplineNotList
;
this
.
disciplineNotList
=
disciplineNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 服务规范得分
* 设置 服务规范得分
* @param specification
* @param specification
*/
*/
public
WindowWorkmanPerformDetailQuery
specification
(
BigDecimal
specification
){
public
WindowWorkmanPerformDetailQuery
specification
(
BigDecimal
specification
){
setSpecification
(
specification
);
setSpecification
(
specification
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 服务规范得分
* 设置 开始 服务规范得分
* @param specificationStart
* @param specificationStart
*/
*/
public
WindowWorkmanPerformDetailQuery
specificationStart
(
BigDecimal
specificationStart
){
public
WindowWorkmanPerformDetailQuery
specificationStart
(
BigDecimal
specificationStart
){
this
.
specificationStart
=
specificationStart
;
this
.
specificationStart
=
specificationStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 服务规范得分
* 设置 结束 服务规范得分
* @param specificationEnd
* @param specificationEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
specificationEnd
(
BigDecimal
specificationEnd
){
public
WindowWorkmanPerformDetailQuery
specificationEnd
(
BigDecimal
specificationEnd
){
this
.
specificationEnd
=
specificationEnd
;
this
.
specificationEnd
=
specificationEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 服务规范得分
* 设置 增加 服务规范得分
* @param specificationIncrement
* @param specificationIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
specificationIncrement
(
BigDecimal
specificationIncrement
){
public
WindowWorkmanPerformDetailQuery
specificationIncrement
(
BigDecimal
specificationIncrement
){
this
.
specificationIncrement
=
specificationIncrement
;
this
.
specificationIncrement
=
specificationIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 服务规范得分
* 设置 服务规范得分
* @param specificationList
* @param specificationList
*/
*/
public
WindowWorkmanPerformDetailQuery
specificationList
(
List
<
BigDecimal
>
specificationList
){
public
WindowWorkmanPerformDetailQuery
specificationList
(
List
<
BigDecimal
>
specificationList
){
this
.
specificationList
=
specificationList
;
this
.
specificationList
=
specificationList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 服务规范得分
* 设置 服务规范得分
* @param specificationNotList
* @param specificationNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
specificationNotList
(
List
<
BigDecimal
>
specificationNotList
){
public
WindowWorkmanPerformDetailQuery
specificationNotList
(
List
<
BigDecimal
>
specificationNotList
){
this
.
specificationNotList
=
specificationNotList
;
this
.
specificationNotList
=
specificationNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 综合管理得分
* 设置 综合管理得分
* @param management
* @param management
*/
*/
public
WindowWorkmanPerformDetailQuery
management
(
BigDecimal
management
){
public
WindowWorkmanPerformDetailQuery
management
(
BigDecimal
management
){
setManagement
(
management
);
setManagement
(
management
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 综合管理得分
* 设置 开始 综合管理得分
* @param managementStart
* @param managementStart
*/
*/
public
WindowWorkmanPerformDetailQuery
managementStart
(
BigDecimal
managementStart
){
public
WindowWorkmanPerformDetailQuery
managementStart
(
BigDecimal
managementStart
){
this
.
managementStart
=
managementStart
;
this
.
managementStart
=
managementStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 综合管理得分
* 设置 结束 综合管理得分
* @param managementEnd
* @param managementEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
managementEnd
(
BigDecimal
managementEnd
){
public
WindowWorkmanPerformDetailQuery
managementEnd
(
BigDecimal
managementEnd
){
this
.
managementEnd
=
managementEnd
;
this
.
managementEnd
=
managementEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 综合管理得分
* 设置 增加 综合管理得分
* @param managementIncrement
* @param managementIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
managementIncrement
(
BigDecimal
managementIncrement
){
public
WindowWorkmanPerformDetailQuery
managementIncrement
(
BigDecimal
managementIncrement
){
this
.
managementIncrement
=
managementIncrement
;
this
.
managementIncrement
=
managementIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 综合管理得分
* 设置 综合管理得分
* @param managementList
* @param managementList
*/
*/
public
WindowWorkmanPerformDetailQuery
managementList
(
List
<
BigDecimal
>
managementList
){
public
WindowWorkmanPerformDetailQuery
managementList
(
List
<
BigDecimal
>
managementList
){
this
.
managementList
=
managementList
;
this
.
managementList
=
managementList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 综合管理得分
* 设置 综合管理得分
* @param managementNotList
* @param managementNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
managementNotList
(
List
<
BigDecimal
>
managementNotList
){
public
WindowWorkmanPerformDetailQuery
managementNotList
(
List
<
BigDecimal
>
managementNotList
){
this
.
managementNotList
=
managementNotList
;
this
.
managementNotList
=
managementNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 群众评议得分
* 设置 群众评议得分
* @param evaluation
* @param evaluation
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluation
(
BigDecimal
evaluation
){
public
WindowWorkmanPerformDetailQuery
evaluation
(
BigDecimal
evaluation
){
setEvaluation
(
evaluation
);
setEvaluation
(
evaluation
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 群众评议得分
* 设置 开始 群众评议得分
* @param evaluationStart
* @param evaluationStart
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluationStart
(
BigDecimal
evaluationStart
){
public
WindowWorkmanPerformDetailQuery
evaluationStart
(
BigDecimal
evaluationStart
){
this
.
evaluationStart
=
evaluationStart
;
this
.
evaluationStart
=
evaluationStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 群众评议得分
* 设置 结束 群众评议得分
* @param evaluationEnd
* @param evaluationEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluationEnd
(
BigDecimal
evaluationEnd
){
public
WindowWorkmanPerformDetailQuery
evaluationEnd
(
BigDecimal
evaluationEnd
){
this
.
evaluationEnd
=
evaluationEnd
;
this
.
evaluationEnd
=
evaluationEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 群众评议得分
* 设置 增加 群众评议得分
* @param evaluationIncrement
* @param evaluationIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluationIncrement
(
BigDecimal
evaluationIncrement
){
public
WindowWorkmanPerformDetailQuery
evaluationIncrement
(
BigDecimal
evaluationIncrement
){
this
.
evaluationIncrement
=
evaluationIncrement
;
this
.
evaluationIncrement
=
evaluationIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 群众评议得分
* 设置 群众评议得分
* @param evaluationList
* @param evaluationList
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluationList
(
List
<
BigDecimal
>
evaluationList
){
public
WindowWorkmanPerformDetailQuery
evaluationList
(
List
<
BigDecimal
>
evaluationList
){
this
.
evaluationList
=
evaluationList
;
this
.
evaluationList
=
evaluationList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 群众评议得分
* 设置 群众评议得分
* @param evaluationNotList
* @param evaluationNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
evaluationNotList
(
List
<
BigDecimal
>
evaluationNotList
){
public
WindowWorkmanPerformDetailQuery
evaluationNotList
(
List
<
BigDecimal
>
evaluationNotList
){
this
.
evaluationNotList
=
evaluationNotList
;
this
.
evaluationNotList
=
evaluationNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作效能得分
* 设置 工作效能得分
* @param efficiency
* @param efficiency
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiency
(
BigDecimal
efficiency
){
public
WindowWorkmanPerformDetailQuery
efficiency
(
BigDecimal
efficiency
){
setEfficiency
(
efficiency
);
setEfficiency
(
efficiency
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 工作效能得分
* 设置 开始 工作效能得分
* @param efficiencyStart
* @param efficiencyStart
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiencyStart
(
BigDecimal
efficiencyStart
){
public
WindowWorkmanPerformDetailQuery
efficiencyStart
(
BigDecimal
efficiencyStart
){
this
.
efficiencyStart
=
efficiencyStart
;
this
.
efficiencyStart
=
efficiencyStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 工作效能得分
* 设置 结束 工作效能得分
* @param efficiencyEnd
* @param efficiencyEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiencyEnd
(
BigDecimal
efficiencyEnd
){
public
WindowWorkmanPerformDetailQuery
efficiencyEnd
(
BigDecimal
efficiencyEnd
){
this
.
efficiencyEnd
=
efficiencyEnd
;
this
.
efficiencyEnd
=
efficiencyEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 工作效能得分
* 设置 增加 工作效能得分
* @param efficiencyIncrement
* @param efficiencyIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiencyIncrement
(
BigDecimal
efficiencyIncrement
){
public
WindowWorkmanPerformDetailQuery
efficiencyIncrement
(
BigDecimal
efficiencyIncrement
){
this
.
efficiencyIncrement
=
efficiencyIncrement
;
this
.
efficiencyIncrement
=
efficiencyIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作效能得分
* 设置 工作效能得分
* @param efficiencyList
* @param efficiencyList
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiencyList
(
List
<
BigDecimal
>
efficiencyList
){
public
WindowWorkmanPerformDetailQuery
efficiencyList
(
List
<
BigDecimal
>
efficiencyList
){
this
.
efficiencyList
=
efficiencyList
;
this
.
efficiencyList
=
efficiencyList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 工作效能得分
* 设置 工作效能得分
* @param efficiencyNotList
* @param efficiencyNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
efficiencyNotList
(
List
<
BigDecimal
>
efficiencyNotList
){
public
WindowWorkmanPerformDetailQuery
efficiencyNotList
(
List
<
BigDecimal
>
efficiencyNotList
){
this
.
efficiencyNotList
=
efficiencyNotList
;
this
.
efficiencyNotList
=
efficiencyNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 加分
* 设置 加分
* @param bonusScore
* @param bonusScore
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScore
(
BigDecimal
bonusScore
){
public
WindowWorkmanPerformDetailQuery
bonusScore
(
BigDecimal
bonusScore
){
setBonusScore
(
bonusScore
);
setBonusScore
(
bonusScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 加分
* 设置 开始 加分
* @param bonusScoreStart
* @param bonusScoreStart
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScoreStart
(
BigDecimal
bonusScoreStart
){
public
WindowWorkmanPerformDetailQuery
bonusScoreStart
(
BigDecimal
bonusScoreStart
){
this
.
bonusScoreStart
=
bonusScoreStart
;
this
.
bonusScoreStart
=
bonusScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 加分
* 设置 结束 加分
* @param bonusScoreEnd
* @param bonusScoreEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScoreEnd
(
BigDecimal
bonusScoreEnd
){
public
WindowWorkmanPerformDetailQuery
bonusScoreEnd
(
BigDecimal
bonusScoreEnd
){
this
.
bonusScoreEnd
=
bonusScoreEnd
;
this
.
bonusScoreEnd
=
bonusScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 加分
* 设置 增加 加分
* @param bonusScoreIncrement
* @param bonusScoreIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScoreIncrement
(
BigDecimal
bonusScoreIncrement
){
public
WindowWorkmanPerformDetailQuery
bonusScoreIncrement
(
BigDecimal
bonusScoreIncrement
){
this
.
bonusScoreIncrement
=
bonusScoreIncrement
;
this
.
bonusScoreIncrement
=
bonusScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 加分
* 设置 加分
* @param bonusScoreList
* @param bonusScoreList
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScoreList
(
List
<
BigDecimal
>
bonusScoreList
){
public
WindowWorkmanPerformDetailQuery
bonusScoreList
(
List
<
BigDecimal
>
bonusScoreList
){
this
.
bonusScoreList
=
bonusScoreList
;
this
.
bonusScoreList
=
bonusScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 加分
* 设置 加分
* @param bonusScoreNotList
* @param bonusScoreNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
bonusScoreNotList
(
List
<
BigDecimal
>
bonusScoreNotList
){
public
WindowWorkmanPerformDetailQuery
bonusScoreNotList
(
List
<
BigDecimal
>
bonusScoreNotList
){
this
.
bonusScoreNotList
=
bonusScoreNotList
;
this
.
bonusScoreNotList
=
bonusScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 合计得分
* 设置 合计得分
* @param sumScore
* @param sumScore
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScore
(
BigDecimal
sumScore
){
public
WindowWorkmanPerformDetailQuery
sumScore
(
BigDecimal
sumScore
){
setSumScore
(
sumScore
);
setSumScore
(
sumScore
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 合计得分
* 设置 开始 合计得分
* @param sumScoreStart
* @param sumScoreStart
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScoreStart
(
BigDecimal
sumScoreStart
){
public
WindowWorkmanPerformDetailQuery
sumScoreStart
(
BigDecimal
sumScoreStart
){
this
.
sumScoreStart
=
sumScoreStart
;
this
.
sumScoreStart
=
sumScoreStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 合计得分
* 设置 结束 合计得分
* @param sumScoreEnd
* @param sumScoreEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScoreEnd
(
BigDecimal
sumScoreEnd
){
public
WindowWorkmanPerformDetailQuery
sumScoreEnd
(
BigDecimal
sumScoreEnd
){
this
.
sumScoreEnd
=
sumScoreEnd
;
this
.
sumScoreEnd
=
sumScoreEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 合计得分
* 设置 增加 合计得分
* @param sumScoreIncrement
* @param sumScoreIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScoreIncrement
(
BigDecimal
sumScoreIncrement
){
public
WindowWorkmanPerformDetailQuery
sumScoreIncrement
(
BigDecimal
sumScoreIncrement
){
this
.
sumScoreIncrement
=
sumScoreIncrement
;
this
.
sumScoreIncrement
=
sumScoreIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 合计得分
* 设置 合计得分
* @param sumScoreList
* @param sumScoreList
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScoreList
(
List
<
BigDecimal
>
sumScoreList
){
public
WindowWorkmanPerformDetailQuery
sumScoreList
(
List
<
BigDecimal
>
sumScoreList
){
this
.
sumScoreList
=
sumScoreList
;
this
.
sumScoreList
=
sumScoreList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 合计得分
* 设置 合计得分
* @param sumScoreNotList
* @param sumScoreNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
sumScoreNotList
(
List
<
BigDecimal
>
sumScoreNotList
){
public
WindowWorkmanPerformDetailQuery
sumScoreNotList
(
List
<
BigDecimal
>
sumScoreNotList
){
this
.
sumScoreNotList
=
sumScoreNotList
;
this
.
sumScoreNotList
=
sumScoreNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核等级1好2较好3一般4较差
* 设置 考核等级1好2较好3一般4较差
* @param examineLevel
* @param examineLevel
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevel
(
Integer
examineLevel
){
public
WindowWorkmanPerformDetailQuery
examineLevel
(
Integer
examineLevel
){
setExamineLevel
(
examineLevel
);
setExamineLevel
(
examineLevel
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 考核等级1好2较好3一般4较差
* 设置 开始 考核等级1好2较好3一般4较差
* @param examineLevelStart
* @param examineLevelStart
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevelStart
(
Integer
examineLevelStart
){
public
WindowWorkmanPerformDetailQuery
examineLevelStart
(
Integer
examineLevelStart
){
this
.
examineLevelStart
=
examineLevelStart
;
this
.
examineLevelStart
=
examineLevelStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 考核等级1好2较好3一般4较差
* 设置 结束 考核等级1好2较好3一般4较差
* @param examineLevelEnd
* @param examineLevelEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevelEnd
(
Integer
examineLevelEnd
){
public
WindowWorkmanPerformDetailQuery
examineLevelEnd
(
Integer
examineLevelEnd
){
this
.
examineLevelEnd
=
examineLevelEnd
;
this
.
examineLevelEnd
=
examineLevelEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 考核等级1好2较好3一般4较差
* 设置 增加 考核等级1好2较好3一般4较差
* @param examineLevelIncrement
* @param examineLevelIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevelIncrement
(
Integer
examineLevelIncrement
){
public
WindowWorkmanPerformDetailQuery
examineLevelIncrement
(
Integer
examineLevelIncrement
){
this
.
examineLevelIncrement
=
examineLevelIncrement
;
this
.
examineLevelIncrement
=
examineLevelIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核等级1好2较好3一般4较差
* 设置 考核等级1好2较好3一般4较差
* @param examineLevelList
* @param examineLevelList
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevelList
(
List
<
Integer
>
examineLevelList
){
public
WindowWorkmanPerformDetailQuery
examineLevelList
(
List
<
Integer
>
examineLevelList
){
this
.
examineLevelList
=
examineLevelList
;
this
.
examineLevelList
=
examineLevelList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核等级1好2较好3一般4较差
* 设置 考核等级1好2较好3一般4较差
* @param examineLevelNotList
* @param examineLevelNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
examineLevelNotList
(
List
<
Integer
>
examineLevelNotList
){
public
WindowWorkmanPerformDetailQuery
examineLevelNotList
(
List
<
Integer
>
examineLevelNotList
){
this
.
examineLevelNotList
=
examineLevelNotList
;
this
.
examineLevelNotList
=
examineLevelNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remark
* @param remark
*/
*/
public
WindowWorkmanPerformDetailQuery
remark
(
String
remark
){
public
WindowWorkmanPerformDetailQuery
remark
(
String
remark
){
setRemark
(
remark
);
setRemark
(
remark
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remarkList
* @param remarkList
*/
*/
public
WindowWorkmanPerformDetailQuery
remarkList
(
List
<
String
>
remarkList
){
public
WindowWorkmanPerformDetailQuery
remarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
this
.
remarkList
=
remarkList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserId
* @param createUserId
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserId
(
Long
createUserId
){
public
WindowWorkmanPerformDetailQuery
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
setCreateUserId
(
createUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 创建用户
* 设置 开始 创建用户
* @param createUserIdStart
* @param createUserIdStart
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserIdStart
(
Long
createUserIdStart
){
public
WindowWorkmanPerformDetailQuery
createUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
this
.
createUserIdStart
=
createUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 创建用户
* 设置 结束 创建用户
* @param createUserIdEnd
* @param createUserIdEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserIdEnd
(
Long
createUserIdEnd
){
public
WindowWorkmanPerformDetailQuery
createUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
this
.
createUserIdEnd
=
createUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 创建用户
* 设置 增加 创建用户
* @param createUserIdIncrement
* @param createUserIdIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
public
WindowWorkmanPerformDetailQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
this
.
createUserIdIncrement
=
createUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdList
* @param createUserIdList
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
public
WindowWorkmanPerformDetailQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
this
.
createUserIdList
=
createUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdNotList
* @param createUserIdNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
public
WindowWorkmanPerformDetailQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
this
.
createUserIdNotList
=
createUserIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserId
* @param updateUserId
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserId
(
Long
updateUserId
){
public
WindowWorkmanPerformDetailQuery
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
setUpdateUserId
(
updateUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 更新用户
* 设置 开始 更新用户
* @param updateUserIdStart
* @param updateUserIdStart
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserIdStart
(
Long
updateUserIdStart
){
public
WindowWorkmanPerformDetailQuery
updateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
this
.
updateUserIdStart
=
updateUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 更新用户
* 设置 结束 更新用户
* @param updateUserIdEnd
* @param updateUserIdEnd
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
public
WindowWorkmanPerformDetailQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
this
.
updateUserIdEnd
=
updateUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 更新用户
* 设置 增加 更新用户
* @param updateUserIdIncrement
* @param updateUserIdIncrement
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
public
WindowWorkmanPerformDetailQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdList
* @param updateUserIdList
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
public
WindowWorkmanPerformDetailQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
this
.
updateUserIdList
=
updateUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdNotList
* @param updateUserIdNotList
*/
*/
public
WindowWorkmanPerformDetailQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
public
WindowWorkmanPerformDetailQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
this
.
updateUserIdNotList
=
updateUserIdNotList
;
return
this
;
return
this
;
}
}
/**
* 设置 所属部门id
* @param deptId
*/
public
WindowWorkmanPerformDetailQuery
deptId
(
Long
deptId
){
setDeptId
(
deptId
);
return
this
;
}
/**
* 设置 开始 所属部门id
* @param deptIdStart
*/
public
WindowWorkmanPerformDetailQuery
deptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
return
this
;
}
/**
* 设置 结束 所属部门id
* @param deptIdEnd
*/
public
WindowWorkmanPerformDetailQuery
deptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
return
this
;
}
/**
* 设置 增加 所属部门id
* @param deptIdIncrement
*/
public
WindowWorkmanPerformDetailQuery
deptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
return
this
;
}
/**
* 设置 所属部门id
* @param deptIdList
*/
public
WindowWorkmanPerformDetailQuery
deptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
return
this
;
}
/**
* 设置 所属部门id
* @param deptIdNotList
*/
public
WindowWorkmanPerformDetailQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
return
this
;
}
/**
* 设置 所属部门名称
* @param deptName
*/
public
WindowWorkmanPerformDetailQuery
deptName
(
String
deptName
){
setDeptName
(
deptName
);
return
this
;
}
/**
* 设置 所属部门名称
* @param deptNameList
*/
public
WindowWorkmanPerformDetailQuery
deptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
return
this
;
}
/**
* 设置 所属大厅
* @param salaId
*/
public
WindowWorkmanPerformDetailQuery
salaId
(
Long
salaId
){
setSalaId
(
salaId
);
return
this
;
}
/**
* 设置 开始 所属大厅
* @param salaIdStart
*/
public
WindowWorkmanPerformDetailQuery
salaIdStart
(
Long
salaIdStart
){
this
.
salaIdStart
=
salaIdStart
;
return
this
;
}
/**
* 设置 结束 所属大厅
* @param salaIdEnd
*/
public
WindowWorkmanPerformDetailQuery
salaIdEnd
(
Long
salaIdEnd
){
this
.
salaIdEnd
=
salaIdEnd
;
return
this
;
}
/**
* 设置 增加 所属大厅
* @param salaIdIncrement
*/
public
WindowWorkmanPerformDetailQuery
salaIdIncrement
(
Long
salaIdIncrement
){
this
.
salaIdIncrement
=
salaIdIncrement
;
return
this
;
}
/**
* 设置 所属大厅
* @param salaIdList
*/
public
WindowWorkmanPerformDetailQuery
salaIdList
(
List
<
Long
>
salaIdList
){
this
.
salaIdList
=
salaIdList
;
return
this
;
}
/**
* 设置 所属大厅
* @param salaIdNotList
*/
public
WindowWorkmanPerformDetailQuery
salaIdNotList
(
List
<
Long
>
salaIdNotList
){
this
.
salaIdNotList
=
salaIdNotList
;
return
this
;
}
/**
* 设置 所属大厅名称
* @param salaName
*/
public
WindowWorkmanPerformDetailQuery
salaName
(
String
salaName
){
setSalaName
(
salaName
);
return
this
;
}
/**
* 设置 所属大厅名称
* @param salaNameList
*/
public
WindowWorkmanPerformDetailQuery
salaNameList
(
List
<
String
>
salaNameList
){
this
.
salaNameList
=
salaNameList
;
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
<
WindowWorkmanPerformDetailQuery
>
getOrConditionList
(){
public
List
<
WindowWorkmanPerformDetailQuery
>
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
<
WindowWorkmanPerformDetailQuery
>
orConditionList
){
public
void
setOrConditionList
(
List
<
WindowWorkmanPerformDetailQuery
>
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
<
WindowWorkmanPerformDetailQuery
>
getAndConditionList
(){
public
List
<
WindowWorkmanPerformDetailQuery
>
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
<
WindowWorkmanPerformDetailQuery
>
andConditionList
){
public
void
setAndConditionList
(
List
<
WindowWorkmanPerformDetailQuery
>
andConditionList
){
this
.
andConditionList
=
andConditionList
;
this
.
andConditionList
=
andConditionList
;
}
}
...
...
attendance-performance-manager/src/main/resources/sqlmap/module/window/WindowWorkmanPerformDetailMapper.xml
View file @
b75bef0d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
attendance-performance-manager/src/main/resources/sqlmap/module/window/WindowWorkmanPerformMapper.xml
View file @
b75bef0d
...
@@ -46,6 +46,10 @@
...
@@ -46,6 +46,10 @@
<result
property=
"createTime"
column=
"createTime"
/>
<result
property=
"createTime"
column=
"createTime"
/>
<result
property=
"updateUserId"
column=
"updateUserId"
/>
<result
property=
"updateUserId"
column=
"updateUserId"
/>
<result
property=
"updateTime"
column=
"updateTime"
/>
<result
property=
"updateTime"
column=
"updateTime"
/>
<result
property=
"deptId"
column=
"deptId"
/>
<result
property=
"deptName"
column=
"deptName"
/>
<result
property=
"salaId"
column=
"salaId"
/>
<result
property=
"salaName"
column=
"salaName"
/>
</resultMap>
</resultMap>
...
@@ -120,7 +124,7 @@
...
@@ -120,7 +124,7 @@
<!-- 子表所有列 -->
<!-- 子表所有列 -->
<sql
id=
"_columns_sub"
>
<sql
id=
"_columns_sub"
>
<trim
suffixOverrides=
","
suffix=
""
>
<trim
suffixOverrides=
","
suffix=
""
>
b.id,b.performId,b.staffId,b.staffName,b.discipline,b.specification,b.management,b.evaluation,b.efficiency,b.bonusScore,b.sumScore,b.examineLevel,b.remark,b.createUserId,b.createTime,b.updateUserId,b.updateTime,
b.id,b.performId,b.staffId,b.staffName,b.discipline,b.specification,b.management,b.evaluation,b.efficiency,b.bonusScore,b.sumScore,b.examineLevel,b.remark,b.createUserId,b.createTime,b.updateUserId,b.updateTime,
b.deptId,b.deptName,b.salaId,b.salaName
</trim>
</trim>
</sql>
</sql>
<!-- 新增 区分主键自增加还是业务插入 -->
<!-- 新增 区分主键自增加还是业务插入 -->
...
...
db/add.sql
View file @
b75bef0d
...
@@ -1168,3 +1168,8 @@ CREATE TABLE mortals_xhx_perform_error_record(
...
@@ -1168,3 +1168,8 @@ CREATE TABLE mortals_xhx_perform_error_record(
`updateTime`
datetime
COMMENT
'更新时间'
,
`updateTime`
datetime
COMMENT
'更新时间'
,
PRIMARY
KEY
(
`id`
)
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'绩效异常记录信息'
;
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COMMENT
=
'绩效异常记录信息'
;
ALTER
TABLE
`mortals_xhx_window_workman_perform_detail`
ADD
COLUMN
`deptId`
bigint
(
20
)
COMMENT
'所属部门id'
AFTER
`staffName`
,
ADD
COLUMN
`deptName`
varchar
(
256
)
COMMENT
'所属部门名称'
AFTER
`deptId`
,
ADD
COLUMN
`salaId`
bigint
(
20
)
COMMENT
'所属大厅'
AFTER
`deptName`
,
ADD
COLUMN
`salaName`
varchar
(
128
)
COMMENT
'所属大厅名称'
AFTER
`salaId`
;
\ No newline at end of file
doc/考勤绩效管理系统.docx
View file @
b75bef0d
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