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
c8960ab5
Commit
c8960ab5
authored
Jan 27, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加窗口人员查询
parent
13157e9e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
917 additions
and
903 deletions
+917
-903
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformEntity.java
...s/xhx/module/window/model/WindowWorkmanPerformEntity.java
+65
-52
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformQuery.java
...ls/xhx/module/window/model/WindowWorkmanPerformQuery.java
+852
-851
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformEntity.java
View file @
c8960ab5
package
com.mortals.xhx.module.window.model
;
package
com.mortals.xhx.module.window.model
;
import
java.util.List
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
...
@@ -9,80 +10,92 @@ import com.fasterxml.jackson.annotation.JsonFormat;
...
@@ -9,80 +10,92 @@ import com.fasterxml.jackson.annotation.JsonFormat;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.window.model.vo.WindowWorkmanPerformVo
;
import
com.mortals.xhx.module.window.model.vo.WindowWorkmanPerformVo
;
import
com.mortals.xhx.module.window.model.WindowWorkmanPerformDetailEntity
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
* 窗口人员考核汇总登记实体对象
* 窗口人员考核汇总登记实体对象
*
*
* @author zxfei
* @author zxfei
* @date 2024-01-1
7
* @date 2024-01-2
7
*/
*/
@Data
@Data
public
class
WindowWorkmanPerformEntity
extends
WindowWorkmanPerformVo
{
public
class
WindowWorkmanPerformEntity
extends
WindowWorkmanPerformVo
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
* 考核年度
* 考核年度
*/
*/
private
Integer
year
;
private
Integer
year
;
/**
/**
* 考核月份
* 考核月份
*/
*/
private
Integer
month
;
private
Integer
month
;
/**
/**
* 窗口ID
* 窗口ID
*/
*/
private
Long
windowId
;
private
Long
windowId
;
/**
/**
* 窗口名称
* 窗口名称
*/
*/
private
String
windowName
;
private
String
windowName
;
/**
/**
* 窗口负责人id
* 窗口负责人id
*/
*/
private
Long
ownerId
;
private
Long
ownerId
;
/**
/**
* 窗口负责人名称
* 窗口负责人名称
*/
*/
private
String
ownerName
;
private
String
ownerName
;
/**
/**
* 所属部门id
* 所属部门id
*/
*/
private
Long
deptId
;
private
Long
deptId
;
/**
/**
* 所属部门名称
* 所属部门名称
*/
*/
private
String
deptName
;
private
String
deptName
;
/**
/**
* 所属大厅
* 所属大厅
*/
*/
private
Long
salaId
;
private
Long
salaId
;
/**
/**
* 所属大厅名称
* 所属大厅名称
*/
*/
private
String
salaName
;
private
String
salaName
;
/**
/**
* 备注
* 备注
*/
*/
private
String
remark
;
private
String
remark
;
/**
/**
* 附件名称
* 附件名称
*/
*/
private
String
annex
;
private
String
annex
;
/**
/**
* 附件地址
* 附件地址
*/
*/
private
String
annexUrl
;
private
String
annexUrl
;
/**
/**
* 填报时间
* 填报时间
*/
*/
private
Date
fillDate
;
private
Date
fillDate
;
/**
/**
* 填报状态0暂存1提交
* 填报状态0暂存1提交
*/
*/
private
Integer
fillStatus
;
private
Integer
fillStatus
;
/**
* 窗口人员考核汇总明细信息
*/
private
List
<
WindowWorkmanPerformDetailEntity
>
windowWorkmanPerformDetailList
=
new
ArrayList
<>();;
public
List
<
WindowWorkmanPerformDetailEntity
>
getWindowWorkmanPerformDetailList
(){
return
windowWorkmanPerformDetailList
;
}
public
void
setWindowWorkmanPerformDetailList
(
List
<
WindowWorkmanPerformDetailEntity
>
windowWorkmanPerformDetailList
){
this
.
windowWorkmanPerformDetailList
=
windowWorkmanPerformDetailList
;
}
@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
)
{
...
@@ -90,27 +103,27 @@ public class WindowWorkmanPerformEntity extends WindowWorkmanPerformVo {
...
@@ -90,27 +103,27 @@ public class WindowWorkmanPerformEntity extends WindowWorkmanPerformVo {
if
(
obj
instanceof
WindowWorkmanPerformEntity
)
{
if
(
obj
instanceof
WindowWorkmanPerformEntity
)
{
WindowWorkmanPerformEntity
tmp
=
(
WindowWorkmanPerformEntity
)
obj
;
WindowWorkmanPerformEntity
tmp
=
(
WindowWorkmanPerformEntity
)
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
.
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
.
windowId
=
null
;
this
.
windowId
=
null
;
this
.
windowName
=
""
;
this
.
windowName
=
""
;
this
.
ownerId
=
null
;
this
.
ownerId
=
null
;
this
.
ownerName
=
""
;
this
.
ownerName
=
""
;
this
.
deptId
=
null
;
this
.
deptId
=
null
;
this
.
deptName
=
""
;
this
.
deptName
=
""
;
this
.
salaId
=
null
;
this
.
salaId
=
null
;
this
.
salaName
=
""
;
this
.
salaName
=
""
;
this
.
remark
=
""
;
this
.
remark
=
""
;
this
.
annex
=
""
;
this
.
annex
=
""
;
this
.
annexUrl
=
""
;
this
.
annexUrl
=
""
;
this
.
fillDate
=
new
Date
();
this
.
fillDate
=
new
Date
();
this
.
fillStatus
=
0
;
this
.
fillStatus
=
0
;
}
}
}
}
\ No newline at end of file
attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/model/WindowWorkmanPerformQuery.java
View file @
c8960ab5
package
com.mortals.xhx.module.window.model
;
package
com.mortals.xhx.module.window.model
;
import
java.util.List
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
com.mortals.xhx.module.window.model.WindowWorkmanPerformEntity
;
import
com.mortals.xhx.module.window.model.WindowWorkmanPerformEntity
;
/**
/**
* 窗口人员考核汇总登记查询对象
* 窗口人员考核汇总登记查询对象
*
*
* @author zxfei
* @author zxfei
* @date 2024-01-1
7
* @date 2024-01-2
7
*/
*/
public
class
WindowWorkmanPerformQuery
extends
WindowWorkmanPerformEntity
{
public
class
WindowWorkmanPerformQuery
extends
WindowWorkmanPerformEntity
{
/** 开始 序号,主键,自增长 */
/** 开始 序号,主键,自增长 */
private
Long
idStart
;
private
Long
idStart
;
...
@@ -222,1839 +223,1839 @@ public class WindowWorkmanPerformQuery extends WindowWorkmanPerformEntity {
...
@@ -222,1839 +223,1839 @@ public class WindowWorkmanPerformQuery extends WindowWorkmanPerformEntity {
public
WindowWorkmanPerformQuery
(){}
public
WindowWorkmanPerformQuery
(){}
/**
/**
* 获取 开始 序号,主键,自增长
* 获取 开始 序号,主键,自增长
* @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 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
;
}
}
/**
/**
* 获取 开始 窗口ID
* 获取 开始 窗口ID
* @return windowIdStart
* @return windowIdStart
*/
*/
public
Long
getWindowIdStart
(){
public
Long
getWindowIdStart
(){
return
this
.
windowIdStart
;
return
this
.
windowIdStart
;
}
}
/**
/**
* 设置 开始 窗口ID
* 设置 开始 窗口ID
* @param windowIdStart
* @param windowIdStart
*/
*/
public
void
setWindowIdStart
(
Long
windowIdStart
){
public
void
setWindowIdStart
(
Long
windowIdStart
){
this
.
windowIdStart
=
windowIdStart
;
this
.
windowIdStart
=
windowIdStart
;
}
}
/**
/**
* 获取 结束 窗口ID
* 获取 结束 窗口ID
* @return $windowIdEnd
* @return $windowIdEnd
*/
*/
public
Long
getWindowIdEnd
(){
public
Long
getWindowIdEnd
(){
return
this
.
windowIdEnd
;
return
this
.
windowIdEnd
;
}
}
/**
/**
* 设置 结束 窗口ID
* 设置 结束 窗口ID
* @param windowIdEnd
* @param windowIdEnd
*/
*/
public
void
setWindowIdEnd
(
Long
windowIdEnd
){
public
void
setWindowIdEnd
(
Long
windowIdEnd
){
this
.
windowIdEnd
=
windowIdEnd
;
this
.
windowIdEnd
=
windowIdEnd
;
}
}
/**
/**
* 获取 增加 窗口ID
* 获取 增加 窗口ID
* @return windowIdIncrement
* @return windowIdIncrement
*/
*/
public
Long
getWindowIdIncrement
(){
public
Long
getWindowIdIncrement
(){
return
this
.
windowIdIncrement
;
return
this
.
windowIdIncrement
;
}
}
/**
/**
* 设置 增加 窗口ID
* 设置 增加 窗口ID
* @param windowIdIncrement
* @param windowIdIncrement
*/
*/
public
void
setWindowIdIncrement
(
Long
windowIdIncrement
){
public
void
setWindowIdIncrement
(
Long
windowIdIncrement
){
this
.
windowIdIncrement
=
windowIdIncrement
;
this
.
windowIdIncrement
=
windowIdIncrement
;
}
}
/**
/**
* 获取 窗口ID
* 获取 窗口ID
* @return windowIdList
* @return windowIdList
*/
*/
public
List
<
Long
>
getWindowIdList
(){
public
List
<
Long
>
getWindowIdList
(){
return
this
.
windowIdList
;
return
this
.
windowIdList
;
}
}
/**
/**
* 设置 窗口ID
* 设置 窗口ID
* @param windowIdList
* @param windowIdList
*/
*/
public
void
setWindowIdList
(
List
<
Long
>
windowIdList
){
public
void
setWindowIdList
(
List
<
Long
>
windowIdList
){
this
.
windowIdList
=
windowIdList
;
this
.
windowIdList
=
windowIdList
;
}
}
/**
/**
* 获取 窗口ID
* 获取 窗口ID
* @return windowIdNotList
* @return windowIdNotList
*/
*/
public
List
<
Long
>
getWindowIdNotList
(){
public
List
<
Long
>
getWindowIdNotList
(){
return
this
.
windowIdNotList
;
return
this
.
windowIdNotList
;
}
}
/**
/**
* 设置 窗口ID
* 设置 窗口ID
* @param windowIdNotList
* @param windowIdNotList
*/
*/
public
void
setWindowIdNotList
(
List
<
Long
>
windowIdNotList
){
public
void
setWindowIdNotList
(
List
<
Long
>
windowIdNotList
){
this
.
windowIdNotList
=
windowIdNotList
;
this
.
windowIdNotList
=
windowIdNotList
;
}
}
/**
/**
* 获取 窗口名称
* 获取 窗口名称
* @return windowNameList
* @return windowNameList
*/
*/
public
List
<
String
>
getWindowNameList
(){
public
List
<
String
>
getWindowNameList
(){
return
this
.
windowNameList
;
return
this
.
windowNameList
;
}
}
/**
/**
* 设置 窗口名称
* 设置 窗口名称
* @param windowNameList
* @param windowNameList
*/
*/
public
void
setWindowNameList
(
List
<
String
>
windowNameList
){
public
void
setWindowNameList
(
List
<
String
>
windowNameList
){
this
.
windowNameList
=
windowNameList
;
this
.
windowNameList
=
windowNameList
;
}
}
/**
/**
* 获取 窗口名称
* 获取 窗口名称
* @return windowNameNotList
* @return windowNameNotList
*/
*/
public
List
<
String
>
getWindowNameNotList
(){
public
List
<
String
>
getWindowNameNotList
(){
return
this
.
windowNameNotList
;
return
this
.
windowNameNotList
;
}
}
/**
/**
* 设置 窗口名称
* 设置 窗口名称
* @param windowNameNotList
* @param windowNameNotList
*/
*/
public
void
setWindowNameNotList
(
List
<
String
>
windowNameNotList
){
public
void
setWindowNameNotList
(
List
<
String
>
windowNameNotList
){
this
.
windowNameNotList
=
windowNameNotList
;
this
.
windowNameNotList
=
windowNameNotList
;
}
}
/**
/**
* 获取 开始 窗口负责人id
* 获取 开始 窗口负责人id
* @return ownerIdStart
* @return ownerIdStart
*/
*/
public
Long
getOwnerIdStart
(){
public
Long
getOwnerIdStart
(){
return
this
.
ownerIdStart
;
return
this
.
ownerIdStart
;
}
}
/**
/**
* 设置 开始 窗口负责人id
* 设置 开始 窗口负责人id
* @param ownerIdStart
* @param ownerIdStart
*/
*/
public
void
setOwnerIdStart
(
Long
ownerIdStart
){
public
void
setOwnerIdStart
(
Long
ownerIdStart
){
this
.
ownerIdStart
=
ownerIdStart
;
this
.
ownerIdStart
=
ownerIdStart
;
}
}
/**
/**
* 获取 结束 窗口负责人id
* 获取 结束 窗口负责人id
* @return $ownerIdEnd
* @return $ownerIdEnd
*/
*/
public
Long
getOwnerIdEnd
(){
public
Long
getOwnerIdEnd
(){
return
this
.
ownerIdEnd
;
return
this
.
ownerIdEnd
;
}
}
/**
/**
* 设置 结束 窗口负责人id
* 设置 结束 窗口负责人id
* @param ownerIdEnd
* @param ownerIdEnd
*/
*/
public
void
setOwnerIdEnd
(
Long
ownerIdEnd
){
public
void
setOwnerIdEnd
(
Long
ownerIdEnd
){
this
.
ownerIdEnd
=
ownerIdEnd
;
this
.
ownerIdEnd
=
ownerIdEnd
;
}
}
/**
/**
* 获取 增加 窗口负责人id
* 获取 增加 窗口负责人id
* @return ownerIdIncrement
* @return ownerIdIncrement
*/
*/
public
Long
getOwnerIdIncrement
(){
public
Long
getOwnerIdIncrement
(){
return
this
.
ownerIdIncrement
;
return
this
.
ownerIdIncrement
;
}
}
/**
/**
* 设置 增加 窗口负责人id
* 设置 增加 窗口负责人id
* @param ownerIdIncrement
* @param ownerIdIncrement
*/
*/
public
void
setOwnerIdIncrement
(
Long
ownerIdIncrement
){
public
void
setOwnerIdIncrement
(
Long
ownerIdIncrement
){
this
.
ownerIdIncrement
=
ownerIdIncrement
;
this
.
ownerIdIncrement
=
ownerIdIncrement
;
}
}
/**
/**
* 获取 窗口负责人id
* 获取 窗口负责人id
* @return ownerIdList
* @return ownerIdList
*/
*/
public
List
<
Long
>
getOwnerIdList
(){
public
List
<
Long
>
getOwnerIdList
(){
return
this
.
ownerIdList
;
return
this
.
ownerIdList
;
}
}
/**
/**
* 设置 窗口负责人id
* 设置 窗口负责人id
* @param ownerIdList
* @param ownerIdList
*/
*/
public
void
setOwnerIdList
(
List
<
Long
>
ownerIdList
){
public
void
setOwnerIdList
(
List
<
Long
>
ownerIdList
){
this
.
ownerIdList
=
ownerIdList
;
this
.
ownerIdList
=
ownerIdList
;
}
}
/**
/**
* 获取 窗口负责人id
* 获取 窗口负责人id
* @return ownerIdNotList
* @return ownerIdNotList
*/
*/
public
List
<
Long
>
getOwnerIdNotList
(){
public
List
<
Long
>
getOwnerIdNotList
(){
return
this
.
ownerIdNotList
;
return
this
.
ownerIdNotList
;
}
}
/**
/**
* 设置 窗口负责人id
* 设置 窗口负责人id
* @param ownerIdNotList
* @param ownerIdNotList
*/
*/
public
void
setOwnerIdNotList
(
List
<
Long
>
ownerIdNotList
){
public
void
setOwnerIdNotList
(
List
<
Long
>
ownerIdNotList
){
this
.
ownerIdNotList
=
ownerIdNotList
;
this
.
ownerIdNotList
=
ownerIdNotList
;
}
}
/**
/**
* 获取 窗口负责人名称
* 获取 窗口负责人名称
* @return ownerNameList
* @return ownerNameList
*/
*/
public
List
<
String
>
getOwnerNameList
(){
public
List
<
String
>
getOwnerNameList
(){
return
this
.
ownerNameList
;
return
this
.
ownerNameList
;
}
}
/**
/**
* 设置 窗口负责人名称
* 设置 窗口负责人名称
* @param ownerNameList
* @param ownerNameList
*/
*/
public
void
setOwnerNameList
(
List
<
String
>
ownerNameList
){
public
void
setOwnerNameList
(
List
<
String
>
ownerNameList
){
this
.
ownerNameList
=
ownerNameList
;
this
.
ownerNameList
=
ownerNameList
;
}
}
/**
/**
* 获取 窗口负责人名称
* 获取 窗口负责人名称
* @return ownerNameNotList
* @return ownerNameNotList
*/
*/
public
List
<
String
>
getOwnerNameNotList
(){
public
List
<
String
>
getOwnerNameNotList
(){
return
this
.
ownerNameNotList
;
return
this
.
ownerNameNotList
;
}
}
/**
/**
* 设置 窗口负责人名称
* 设置 窗口负责人名称
* @param ownerNameNotList
* @param ownerNameNotList
*/
*/
public
void
setOwnerNameNotList
(
List
<
String
>
ownerNameNotList
){
public
void
setOwnerNameNotList
(
List
<
String
>
ownerNameNotList
){
this
.
ownerNameNotList
=
ownerNameNotList
;
this
.
ownerNameNotList
=
ownerNameNotList
;
}
}
/**
/**
* 获取 开始 所属部门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 salaIdStart
* @return salaIdStart
*/
*/
public
Long
getSalaIdStart
(){
public
Long
getSalaIdStart
(){
return
this
.
salaIdStart
;
return
this
.
salaIdStart
;
}
}
/**
/**
* 设置 开始 所属大厅
* 设置 开始 所属大厅
* @param salaIdStart
* @param salaIdStart
*/
*/
public
void
setSalaIdStart
(
Long
salaIdStart
){
public
void
setSalaIdStart
(
Long
salaIdStart
){
this
.
salaIdStart
=
salaIdStart
;
this
.
salaIdStart
=
salaIdStart
;
}
}
/**
/**
* 获取 结束 所属大厅
* 获取 结束 所属大厅
* @return $salaIdEnd
* @return $salaIdEnd
*/
*/
public
Long
getSalaIdEnd
(){
public
Long
getSalaIdEnd
(){
return
this
.
salaIdEnd
;
return
this
.
salaIdEnd
;
}
}
/**
/**
* 设置 结束 所属大厅
* 设置 结束 所属大厅
* @param salaIdEnd
* @param salaIdEnd
*/
*/
public
void
setSalaIdEnd
(
Long
salaIdEnd
){
public
void
setSalaIdEnd
(
Long
salaIdEnd
){
this
.
salaIdEnd
=
salaIdEnd
;
this
.
salaIdEnd
=
salaIdEnd
;
}
}
/**
/**
* 获取 增加 所属大厅
* 获取 增加 所属大厅
* @return salaIdIncrement
* @return salaIdIncrement
*/
*/
public
Long
getSalaIdIncrement
(){
public
Long
getSalaIdIncrement
(){
return
this
.
salaIdIncrement
;
return
this
.
salaIdIncrement
;
}
}
/**
/**
* 设置 增加 所属大厅
* 设置 增加 所属大厅
* @param salaIdIncrement
* @param salaIdIncrement
*/
*/
public
void
setSalaIdIncrement
(
Long
salaIdIncrement
){
public
void
setSalaIdIncrement
(
Long
salaIdIncrement
){
this
.
salaIdIncrement
=
salaIdIncrement
;
this
.
salaIdIncrement
=
salaIdIncrement
;
}
}
/**
/**
* 获取 所属大厅
* 获取 所属大厅
* @return salaIdList
* @return salaIdList
*/
*/
public
List
<
Long
>
getSalaIdList
(){
public
List
<
Long
>
getSalaIdList
(){
return
this
.
salaIdList
;
return
this
.
salaIdList
;
}
}
/**
/**
* 设置 所属大厅
* 设置 所属大厅
* @param salaIdList
* @param salaIdList
*/
*/
public
void
setSalaIdList
(
List
<
Long
>
salaIdList
){
public
void
setSalaIdList
(
List
<
Long
>
salaIdList
){
this
.
salaIdList
=
salaIdList
;
this
.
salaIdList
=
salaIdList
;
}
}
/**
/**
* 获取 所属大厅
* 获取 所属大厅
* @return salaIdNotList
* @return salaIdNotList
*/
*/
public
List
<
Long
>
getSalaIdNotList
(){
public
List
<
Long
>
getSalaIdNotList
(){
return
this
.
salaIdNotList
;
return
this
.
salaIdNotList
;
}
}
/**
/**
* 设置 所属大厅
* 设置 所属大厅
* @param salaIdNotList
* @param salaIdNotList
*/
*/
public
void
setSalaIdNotList
(
List
<
Long
>
salaIdNotList
){
public
void
setSalaIdNotList
(
List
<
Long
>
salaIdNotList
){
this
.
salaIdNotList
=
salaIdNotList
;
this
.
salaIdNotList
=
salaIdNotList
;
}
}
/**
/**
* 获取 所属大厅名称
* 获取 所属大厅名称
* @return salaNameList
* @return salaNameList
*/
*/
public
List
<
String
>
getSalaNameList
(){
public
List
<
String
>
getSalaNameList
(){
return
this
.
salaNameList
;
return
this
.
salaNameList
;
}
}
/**
/**
* 设置 所属大厅名称
* 设置 所属大厅名称
* @param salaNameList
* @param salaNameList
*/
*/
public
void
setSalaNameList
(
List
<
String
>
salaNameList
){
public
void
setSalaNameList
(
List
<
String
>
salaNameList
){
this
.
salaNameList
=
salaNameList
;
this
.
salaNameList
=
salaNameList
;
}
}
/**
/**
* 获取 所属大厅名称
* 获取 所属大厅名称
* @return salaNameNotList
* @return salaNameNotList
*/
*/
public
List
<
String
>
getSalaNameNotList
(){
public
List
<
String
>
getSalaNameNotList
(){
return
this
.
salaNameNotList
;
return
this
.
salaNameNotList
;
}
}
/**
/**
* 设置 所属大厅名称
* 设置 所属大厅名称
* @param salaNameNotList
* @param salaNameNotList
*/
*/
public
void
setSalaNameNotList
(
List
<
String
>
salaNameNotList
){
public
void
setSalaNameNotList
(
List
<
String
>
salaNameNotList
){
this
.
salaNameNotList
=
salaNameNotList
;
this
.
salaNameNotList
=
salaNameNotList
;
}
}
/**
/**
* 获取 备注
* 获取 备注
* @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 annexList
* @return annexList
*/
*/
public
List
<
String
>
getAnnexList
(){
public
List
<
String
>
getAnnexList
(){
return
this
.
annexList
;
return
this
.
annexList
;
}
}
/**
/**
* 设置 附件名称
* 设置 附件名称
* @param annexList
* @param annexList
*/
*/
public
void
setAnnexList
(
List
<
String
>
annexList
){
public
void
setAnnexList
(
List
<
String
>
annexList
){
this
.
annexList
=
annexList
;
this
.
annexList
=
annexList
;
}
}
/**
/**
* 获取 附件名称
* 获取 附件名称
* @return annexNotList
* @return annexNotList
*/
*/
public
List
<
String
>
getAnnexNotList
(){
public
List
<
String
>
getAnnexNotList
(){
return
this
.
annexNotList
;
return
this
.
annexNotList
;
}
}
/**
/**
* 设置 附件名称
* 设置 附件名称
* @param annexNotList
* @param annexNotList
*/
*/
public
void
setAnnexNotList
(
List
<
String
>
annexNotList
){
public
void
setAnnexNotList
(
List
<
String
>
annexNotList
){
this
.
annexNotList
=
annexNotList
;
this
.
annexNotList
=
annexNotList
;
}
}
/**
/**
* 获取 附件地址
* 获取 附件地址
* @return annexUrlList
* @return annexUrlList
*/
*/
public
List
<
String
>
getAnnexUrlList
(){
public
List
<
String
>
getAnnexUrlList
(){
return
this
.
annexUrlList
;
return
this
.
annexUrlList
;
}
}
/**
/**
* 设置 附件地址
* 设置 附件地址
* @param annexUrlList
* @param annexUrlList
*/
*/
public
void
setAnnexUrlList
(
List
<
String
>
annexUrlList
){
public
void
setAnnexUrlList
(
List
<
String
>
annexUrlList
){
this
.
annexUrlList
=
annexUrlList
;
this
.
annexUrlList
=
annexUrlList
;
}
}
/**
/**
* 获取 附件地址
* 获取 附件地址
* @return annexUrlNotList
* @return annexUrlNotList
*/
*/
public
List
<
String
>
getAnnexUrlNotList
(){
public
List
<
String
>
getAnnexUrlNotList
(){
return
this
.
annexUrlNotList
;
return
this
.
annexUrlNotList
;
}
}
/**
/**
* 设置 附件地址
* 设置 附件地址
* @param annexUrlNotList
* @param annexUrlNotList
*/
*/
public
void
setAnnexUrlNotList
(
List
<
String
>
annexUrlNotList
){
public
void
setAnnexUrlNotList
(
List
<
String
>
annexUrlNotList
){
this
.
annexUrlNotList
=
annexUrlNotList
;
this
.
annexUrlNotList
=
annexUrlNotList
;
}
}
/**
/**
* 获取 开始 填报时间
* 获取 开始 填报时间
* @return fillDateStart
* @return fillDateStart
*/
*/
public
String
getFillDateStart
(){
public
String
getFillDateStart
(){
return
this
.
fillDateStart
;
return
this
.
fillDateStart
;
}
}
/**
/**
* 设置 开始 填报时间
* 设置 开始 填报时间
* @param fillDateStart
* @param fillDateStart
*/
*/
public
void
setFillDateStart
(
String
fillDateStart
){
public
void
setFillDateStart
(
String
fillDateStart
){
this
.
fillDateStart
=
fillDateStart
;
this
.
fillDateStart
=
fillDateStart
;
}
}
/**
/**
* 获取 结束 填报时间
* 获取 结束 填报时间
* @return fillDateEnd
* @return fillDateEnd
*/
*/
public
String
getFillDateEnd
(){
public
String
getFillDateEnd
(){
return
this
.
fillDateEnd
;
return
this
.
fillDateEnd
;
}
}
/**
/**
* 设置 结束 填报时间
* 设置 结束 填报时间
* @param fillDateEnd
* @param fillDateEnd
*/
*/
public
void
setFillDateEnd
(
String
fillDateEnd
){
public
void
setFillDateEnd
(
String
fillDateEnd
){
this
.
fillDateEnd
=
fillDateEnd
;
this
.
fillDateEnd
=
fillDateEnd
;
}
}
/**
/**
* 获取 开始 填报状态0暂存1提交
* 获取 开始 填报状态0暂存1提交
* @return fillStatusStart
* @return fillStatusStart
*/
*/
public
Integer
getFillStatusStart
(){
public
Integer
getFillStatusStart
(){
return
this
.
fillStatusStart
;
return
this
.
fillStatusStart
;
}
}
/**
/**
* 设置 开始 填报状态0暂存1提交
* 设置 开始 填报状态0暂存1提交
* @param fillStatusStart
* @param fillStatusStart
*/
*/
public
void
setFillStatusStart
(
Integer
fillStatusStart
){
public
void
setFillStatusStart
(
Integer
fillStatusStart
){
this
.
fillStatusStart
=
fillStatusStart
;
this
.
fillStatusStart
=
fillStatusStart
;
}
}
/**
/**
* 获取 结束 填报状态0暂存1提交
* 获取 结束 填报状态0暂存1提交
* @return $fillStatusEnd
* @return $fillStatusEnd
*/
*/
public
Integer
getFillStatusEnd
(){
public
Integer
getFillStatusEnd
(){
return
this
.
fillStatusEnd
;
return
this
.
fillStatusEnd
;
}
}
/**
/**
* 设置 结束 填报状态0暂存1提交
* 设置 结束 填报状态0暂存1提交
* @param fillStatusEnd
* @param fillStatusEnd
*/
*/
public
void
setFillStatusEnd
(
Integer
fillStatusEnd
){
public
void
setFillStatusEnd
(
Integer
fillStatusEnd
){
this
.
fillStatusEnd
=
fillStatusEnd
;
this
.
fillStatusEnd
=
fillStatusEnd
;
}
}
/**
/**
* 获取 增加 填报状态0暂存1提交
* 获取 增加 填报状态0暂存1提交
* @return fillStatusIncrement
* @return fillStatusIncrement
*/
*/
public
Integer
getFillStatusIncrement
(){
public
Integer
getFillStatusIncrement
(){
return
this
.
fillStatusIncrement
;
return
this
.
fillStatusIncrement
;
}
}
/**
/**
* 设置 增加 填报状态0暂存1提交
* 设置 增加 填报状态0暂存1提交
* @param fillStatusIncrement
* @param fillStatusIncrement
*/
*/
public
void
setFillStatusIncrement
(
Integer
fillStatusIncrement
){
public
void
setFillStatusIncrement
(
Integer
fillStatusIncrement
){
this
.
fillStatusIncrement
=
fillStatusIncrement
;
this
.
fillStatusIncrement
=
fillStatusIncrement
;
}
}
/**
/**
* 获取 填报状态0暂存1提交
* 获取 填报状态0暂存1提交
* @return fillStatusList
* @return fillStatusList
*/
*/
public
List
<
Integer
>
getFillStatusList
(){
public
List
<
Integer
>
getFillStatusList
(){
return
this
.
fillStatusList
;
return
this
.
fillStatusList
;
}
}
/**
/**
* 设置 填报状态0暂存1提交
* 设置 填报状态0暂存1提交
* @param fillStatusList
* @param fillStatusList
*/
*/
public
void
setFillStatusList
(
List
<
Integer
>
fillStatusList
){
public
void
setFillStatusList
(
List
<
Integer
>
fillStatusList
){
this
.
fillStatusList
=
fillStatusList
;
this
.
fillStatusList
=
fillStatusList
;
}
}
/**
/**
* 获取 填报状态0暂存1提交
* 获取 填报状态0暂存1提交
* @return fillStatusNotList
* @return fillStatusNotList
*/
*/
public
List
<
Integer
>
getFillStatusNotList
(){
public
List
<
Integer
>
getFillStatusNotList
(){
return
this
.
fillStatusNotList
;
return
this
.
fillStatusNotList
;
}
}
/**
/**
* 设置 填报状态0暂存1提交
* 设置 填报状态0暂存1提交
* @param fillStatusNotList
* @param fillStatusNotList
*/
*/
public
void
setFillStatusNotList
(
List
<
Integer
>
fillStatusNotList
){
public
void
setFillStatusNotList
(
List
<
Integer
>
fillStatusNotList
){
this
.
fillStatusNotList
=
fillStatusNotList
;
this
.
fillStatusNotList
=
fillStatusNotList
;
}
}
/**
/**
* 获取 开始 创建用户
* 获取 开始 创建用户
* @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
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param id
* @param id
*/
*/
public
WindowWorkmanPerformQuery
id
(
Long
id
){
public
WindowWorkmanPerformQuery
id
(
Long
id
){
setId
(
id
);
setId
(
id
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 序号,主键,自增长
* 设置 开始 序号,主键,自增长
* @param idStart
* @param idStart
*/
*/
public
WindowWorkmanPerformQuery
idStart
(
Long
idStart
){
public
WindowWorkmanPerformQuery
idStart
(
Long
idStart
){
this
.
idStart
=
idStart
;
this
.
idStart
=
idStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 序号,主键,自增长
* 设置 结束 序号,主键,自增长
* @param idEnd
* @param idEnd
*/
*/
public
WindowWorkmanPerformQuery
idEnd
(
Long
idEnd
){
public
WindowWorkmanPerformQuery
idEnd
(
Long
idEnd
){
this
.
idEnd
=
idEnd
;
this
.
idEnd
=
idEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 序号,主键,自增长
* 设置 增加 序号,主键,自增长
* @param idIncrement
* @param idIncrement
*/
*/
public
WindowWorkmanPerformQuery
idIncrement
(
Long
idIncrement
){
public
WindowWorkmanPerformQuery
idIncrement
(
Long
idIncrement
){
this
.
idIncrement
=
idIncrement
;
this
.
idIncrement
=
idIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idList
* @param idList
*/
*/
public
WindowWorkmanPerformQuery
idList
(
List
<
Long
>
idList
){
public
WindowWorkmanPerformQuery
idList
(
List
<
Long
>
idList
){
this
.
idList
=
idList
;
this
.
idList
=
idList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 序号,主键,自增长
* 设置 序号,主键,自增长
* @param idNotList
* @param idNotList
*/
*/
public
WindowWorkmanPerformQuery
idNotList
(
List
<
Long
>
idNotList
){
public
WindowWorkmanPerformQuery
idNotList
(
List
<
Long
>
idNotList
){
this
.
idNotList
=
idNotList
;
this
.
idNotList
=
idNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核年度
* 设置 考核年度
* @param year
* @param year
*/
*/
public
WindowWorkmanPerformQuery
year
(
Integer
year
){
public
WindowWorkmanPerformQuery
year
(
Integer
year
){
setYear
(
year
);
setYear
(
year
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 考核年度
* 设置 开始 考核年度
* @param yearStart
* @param yearStart
*/
*/
public
WindowWorkmanPerformQuery
yearStart
(
Integer
yearStart
){
public
WindowWorkmanPerformQuery
yearStart
(
Integer
yearStart
){
this
.
yearStart
=
yearStart
;
this
.
yearStart
=
yearStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 考核年度
* 设置 结束 考核年度
* @param yearEnd
* @param yearEnd
*/
*/
public
WindowWorkmanPerformQuery
yearEnd
(
Integer
yearEnd
){
public
WindowWorkmanPerformQuery
yearEnd
(
Integer
yearEnd
){
this
.
yearEnd
=
yearEnd
;
this
.
yearEnd
=
yearEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 考核年度
* 设置 增加 考核年度
* @param yearIncrement
* @param yearIncrement
*/
*/
public
WindowWorkmanPerformQuery
yearIncrement
(
Integer
yearIncrement
){
public
WindowWorkmanPerformQuery
yearIncrement
(
Integer
yearIncrement
){
this
.
yearIncrement
=
yearIncrement
;
this
.
yearIncrement
=
yearIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核年度
* 设置 考核年度
* @param yearList
* @param yearList
*/
*/
public
WindowWorkmanPerformQuery
yearList
(
List
<
Integer
>
yearList
){
public
WindowWorkmanPerformQuery
yearList
(
List
<
Integer
>
yearList
){
this
.
yearList
=
yearList
;
this
.
yearList
=
yearList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核年度
* 设置 考核年度
* @param yearNotList
* @param yearNotList
*/
*/
public
WindowWorkmanPerformQuery
yearNotList
(
List
<
Integer
>
yearNotList
){
public
WindowWorkmanPerformQuery
yearNotList
(
List
<
Integer
>
yearNotList
){
this
.
yearNotList
=
yearNotList
;
this
.
yearNotList
=
yearNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核月份
* 设置 考核月份
* @param month
* @param month
*/
*/
public
WindowWorkmanPerformQuery
month
(
Integer
month
){
public
WindowWorkmanPerformQuery
month
(
Integer
month
){
setMonth
(
month
);
setMonth
(
month
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 考核月份
* 设置 开始 考核月份
* @param monthStart
* @param monthStart
*/
*/
public
WindowWorkmanPerformQuery
monthStart
(
Integer
monthStart
){
public
WindowWorkmanPerformQuery
monthStart
(
Integer
monthStart
){
this
.
monthStart
=
monthStart
;
this
.
monthStart
=
monthStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 考核月份
* 设置 结束 考核月份
* @param monthEnd
* @param monthEnd
*/
*/
public
WindowWorkmanPerformQuery
monthEnd
(
Integer
monthEnd
){
public
WindowWorkmanPerformQuery
monthEnd
(
Integer
monthEnd
){
this
.
monthEnd
=
monthEnd
;
this
.
monthEnd
=
monthEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 考核月份
* 设置 增加 考核月份
* @param monthIncrement
* @param monthIncrement
*/
*/
public
WindowWorkmanPerformQuery
monthIncrement
(
Integer
monthIncrement
){
public
WindowWorkmanPerformQuery
monthIncrement
(
Integer
monthIncrement
){
this
.
monthIncrement
=
monthIncrement
;
this
.
monthIncrement
=
monthIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核月份
* 设置 考核月份
* @param monthList
* @param monthList
*/
*/
public
WindowWorkmanPerformQuery
monthList
(
List
<
Integer
>
monthList
){
public
WindowWorkmanPerformQuery
monthList
(
List
<
Integer
>
monthList
){
this
.
monthList
=
monthList
;
this
.
monthList
=
monthList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 考核月份
* 设置 考核月份
* @param monthNotList
* @param monthNotList
*/
*/
public
WindowWorkmanPerformQuery
monthNotList
(
List
<
Integer
>
monthNotList
){
public
WindowWorkmanPerformQuery
monthNotList
(
List
<
Integer
>
monthNotList
){
this
.
monthNotList
=
monthNotList
;
this
.
monthNotList
=
monthNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口ID
* 设置 窗口ID
* @param windowId
* @param windowId
*/
*/
public
WindowWorkmanPerformQuery
windowId
(
Long
windowId
){
public
WindowWorkmanPerformQuery
windowId
(
Long
windowId
){
setWindowId
(
windowId
);
setWindowId
(
windowId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 窗口ID
* 设置 开始 窗口ID
* @param windowIdStart
* @param windowIdStart
*/
*/
public
WindowWorkmanPerformQuery
windowIdStart
(
Long
windowIdStart
){
public
WindowWorkmanPerformQuery
windowIdStart
(
Long
windowIdStart
){
this
.
windowIdStart
=
windowIdStart
;
this
.
windowIdStart
=
windowIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 窗口ID
* 设置 结束 窗口ID
* @param windowIdEnd
* @param windowIdEnd
*/
*/
public
WindowWorkmanPerformQuery
windowIdEnd
(
Long
windowIdEnd
){
public
WindowWorkmanPerformQuery
windowIdEnd
(
Long
windowIdEnd
){
this
.
windowIdEnd
=
windowIdEnd
;
this
.
windowIdEnd
=
windowIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 窗口ID
* 设置 增加 窗口ID
* @param windowIdIncrement
* @param windowIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
windowIdIncrement
(
Long
windowIdIncrement
){
public
WindowWorkmanPerformQuery
windowIdIncrement
(
Long
windowIdIncrement
){
this
.
windowIdIncrement
=
windowIdIncrement
;
this
.
windowIdIncrement
=
windowIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口ID
* 设置 窗口ID
* @param windowIdList
* @param windowIdList
*/
*/
public
WindowWorkmanPerformQuery
windowIdList
(
List
<
Long
>
windowIdList
){
public
WindowWorkmanPerformQuery
windowIdList
(
List
<
Long
>
windowIdList
){
this
.
windowIdList
=
windowIdList
;
this
.
windowIdList
=
windowIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口ID
* 设置 窗口ID
* @param windowIdNotList
* @param windowIdNotList
*/
*/
public
WindowWorkmanPerformQuery
windowIdNotList
(
List
<
Long
>
windowIdNotList
){
public
WindowWorkmanPerformQuery
windowIdNotList
(
List
<
Long
>
windowIdNotList
){
this
.
windowIdNotList
=
windowIdNotList
;
this
.
windowIdNotList
=
windowIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口名称
* 设置 窗口名称
* @param windowName
* @param windowName
*/
*/
public
WindowWorkmanPerformQuery
windowName
(
String
windowName
){
public
WindowWorkmanPerformQuery
windowName
(
String
windowName
){
setWindowName
(
windowName
);
setWindowName
(
windowName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口名称
* 设置 窗口名称
* @param windowNameList
* @param windowNameList
*/
*/
public
WindowWorkmanPerformQuery
windowNameList
(
List
<
String
>
windowNameList
){
public
WindowWorkmanPerformQuery
windowNameList
(
List
<
String
>
windowNameList
){
this
.
windowNameList
=
windowNameList
;
this
.
windowNameList
=
windowNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口负责人id
* 设置 窗口负责人id
* @param ownerId
* @param ownerId
*/
*/
public
WindowWorkmanPerformQuery
ownerId
(
Long
ownerId
){
public
WindowWorkmanPerformQuery
ownerId
(
Long
ownerId
){
setOwnerId
(
ownerId
);
setOwnerId
(
ownerId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 窗口负责人id
* 设置 开始 窗口负责人id
* @param ownerIdStart
* @param ownerIdStart
*/
*/
public
WindowWorkmanPerformQuery
ownerIdStart
(
Long
ownerIdStart
){
public
WindowWorkmanPerformQuery
ownerIdStart
(
Long
ownerIdStart
){
this
.
ownerIdStart
=
ownerIdStart
;
this
.
ownerIdStart
=
ownerIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 窗口负责人id
* 设置 结束 窗口负责人id
* @param ownerIdEnd
* @param ownerIdEnd
*/
*/
public
WindowWorkmanPerformQuery
ownerIdEnd
(
Long
ownerIdEnd
){
public
WindowWorkmanPerformQuery
ownerIdEnd
(
Long
ownerIdEnd
){
this
.
ownerIdEnd
=
ownerIdEnd
;
this
.
ownerIdEnd
=
ownerIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 窗口负责人id
* 设置 增加 窗口负责人id
* @param ownerIdIncrement
* @param ownerIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
ownerIdIncrement
(
Long
ownerIdIncrement
){
public
WindowWorkmanPerformQuery
ownerIdIncrement
(
Long
ownerIdIncrement
){
this
.
ownerIdIncrement
=
ownerIdIncrement
;
this
.
ownerIdIncrement
=
ownerIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口负责人id
* 设置 窗口负责人id
* @param ownerIdList
* @param ownerIdList
*/
*/
public
WindowWorkmanPerformQuery
ownerIdList
(
List
<
Long
>
ownerIdList
){
public
WindowWorkmanPerformQuery
ownerIdList
(
List
<
Long
>
ownerIdList
){
this
.
ownerIdList
=
ownerIdList
;
this
.
ownerIdList
=
ownerIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口负责人id
* 设置 窗口负责人id
* @param ownerIdNotList
* @param ownerIdNotList
*/
*/
public
WindowWorkmanPerformQuery
ownerIdNotList
(
List
<
Long
>
ownerIdNotList
){
public
WindowWorkmanPerformQuery
ownerIdNotList
(
List
<
Long
>
ownerIdNotList
){
this
.
ownerIdNotList
=
ownerIdNotList
;
this
.
ownerIdNotList
=
ownerIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口负责人名称
* 设置 窗口负责人名称
* @param ownerName
* @param ownerName
*/
*/
public
WindowWorkmanPerformQuery
ownerName
(
String
ownerName
){
public
WindowWorkmanPerformQuery
ownerName
(
String
ownerName
){
setOwnerName
(
ownerName
);
setOwnerName
(
ownerName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 窗口负责人名称
* 设置 窗口负责人名称
* @param ownerNameList
* @param ownerNameList
*/
*/
public
WindowWorkmanPerformQuery
ownerNameList
(
List
<
String
>
ownerNameList
){
public
WindowWorkmanPerformQuery
ownerNameList
(
List
<
String
>
ownerNameList
){
this
.
ownerNameList
=
ownerNameList
;
this
.
ownerNameList
=
ownerNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属部门id
* 设置 所属部门id
* @param deptId
* @param deptId
*/
*/
public
WindowWorkmanPerformQuery
deptId
(
Long
deptId
){
public
WindowWorkmanPerformQuery
deptId
(
Long
deptId
){
setDeptId
(
deptId
);
setDeptId
(
deptId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 所属部门id
* 设置 开始 所属部门id
* @param deptIdStart
* @param deptIdStart
*/
*/
public
WindowWorkmanPerformQuery
deptIdStart
(
Long
deptIdStart
){
public
WindowWorkmanPerformQuery
deptIdStart
(
Long
deptIdStart
){
this
.
deptIdStart
=
deptIdStart
;
this
.
deptIdStart
=
deptIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 所属部门id
* 设置 结束 所属部门id
* @param deptIdEnd
* @param deptIdEnd
*/
*/
public
WindowWorkmanPerformQuery
deptIdEnd
(
Long
deptIdEnd
){
public
WindowWorkmanPerformQuery
deptIdEnd
(
Long
deptIdEnd
){
this
.
deptIdEnd
=
deptIdEnd
;
this
.
deptIdEnd
=
deptIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 所属部门id
* 设置 增加 所属部门id
* @param deptIdIncrement
* @param deptIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
deptIdIncrement
(
Long
deptIdIncrement
){
public
WindowWorkmanPerformQuery
deptIdIncrement
(
Long
deptIdIncrement
){
this
.
deptIdIncrement
=
deptIdIncrement
;
this
.
deptIdIncrement
=
deptIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属部门id
* 设置 所属部门id
* @param deptIdList
* @param deptIdList
*/
*/
public
WindowWorkmanPerformQuery
deptIdList
(
List
<
Long
>
deptIdList
){
public
WindowWorkmanPerformQuery
deptIdList
(
List
<
Long
>
deptIdList
){
this
.
deptIdList
=
deptIdList
;
this
.
deptIdList
=
deptIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属部门id
* 设置 所属部门id
* @param deptIdNotList
* @param deptIdNotList
*/
*/
public
WindowWorkmanPerformQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
public
WindowWorkmanPerformQuery
deptIdNotList
(
List
<
Long
>
deptIdNotList
){
this
.
deptIdNotList
=
deptIdNotList
;
this
.
deptIdNotList
=
deptIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属部门名称
* 设置 所属部门名称
* @param deptName
* @param deptName
*/
*/
public
WindowWorkmanPerformQuery
deptName
(
String
deptName
){
public
WindowWorkmanPerformQuery
deptName
(
String
deptName
){
setDeptName
(
deptName
);
setDeptName
(
deptName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属部门名称
* 设置 所属部门名称
* @param deptNameList
* @param deptNameList
*/
*/
public
WindowWorkmanPerformQuery
deptNameList
(
List
<
String
>
deptNameList
){
public
WindowWorkmanPerformQuery
deptNameList
(
List
<
String
>
deptNameList
){
this
.
deptNameList
=
deptNameList
;
this
.
deptNameList
=
deptNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属大厅
* 设置 所属大厅
* @param salaId
* @param salaId
*/
*/
public
WindowWorkmanPerformQuery
salaId
(
Long
salaId
){
public
WindowWorkmanPerformQuery
salaId
(
Long
salaId
){
setSalaId
(
salaId
);
setSalaId
(
salaId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 所属大厅
* 设置 开始 所属大厅
* @param salaIdStart
* @param salaIdStart
*/
*/
public
WindowWorkmanPerformQuery
salaIdStart
(
Long
salaIdStart
){
public
WindowWorkmanPerformQuery
salaIdStart
(
Long
salaIdStart
){
this
.
salaIdStart
=
salaIdStart
;
this
.
salaIdStart
=
salaIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 所属大厅
* 设置 结束 所属大厅
* @param salaIdEnd
* @param salaIdEnd
*/
*/
public
WindowWorkmanPerformQuery
salaIdEnd
(
Long
salaIdEnd
){
public
WindowWorkmanPerformQuery
salaIdEnd
(
Long
salaIdEnd
){
this
.
salaIdEnd
=
salaIdEnd
;
this
.
salaIdEnd
=
salaIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 所属大厅
* 设置 增加 所属大厅
* @param salaIdIncrement
* @param salaIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
salaIdIncrement
(
Long
salaIdIncrement
){
public
WindowWorkmanPerformQuery
salaIdIncrement
(
Long
salaIdIncrement
){
this
.
salaIdIncrement
=
salaIdIncrement
;
this
.
salaIdIncrement
=
salaIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属大厅
* 设置 所属大厅
* @param salaIdList
* @param salaIdList
*/
*/
public
WindowWorkmanPerformQuery
salaIdList
(
List
<
Long
>
salaIdList
){
public
WindowWorkmanPerformQuery
salaIdList
(
List
<
Long
>
salaIdList
){
this
.
salaIdList
=
salaIdList
;
this
.
salaIdList
=
salaIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属大厅
* 设置 所属大厅
* @param salaIdNotList
* @param salaIdNotList
*/
*/
public
WindowWorkmanPerformQuery
salaIdNotList
(
List
<
Long
>
salaIdNotList
){
public
WindowWorkmanPerformQuery
salaIdNotList
(
List
<
Long
>
salaIdNotList
){
this
.
salaIdNotList
=
salaIdNotList
;
this
.
salaIdNotList
=
salaIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属大厅名称
* 设置 所属大厅名称
* @param salaName
* @param salaName
*/
*/
public
WindowWorkmanPerformQuery
salaName
(
String
salaName
){
public
WindowWorkmanPerformQuery
salaName
(
String
salaName
){
setSalaName
(
salaName
);
setSalaName
(
salaName
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 所属大厅名称
* 设置 所属大厅名称
* @param salaNameList
* @param salaNameList
*/
*/
public
WindowWorkmanPerformQuery
salaNameList
(
List
<
String
>
salaNameList
){
public
WindowWorkmanPerformQuery
salaNameList
(
List
<
String
>
salaNameList
){
this
.
salaNameList
=
salaNameList
;
this
.
salaNameList
=
salaNameList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remark
* @param remark
*/
*/
public
WindowWorkmanPerformQuery
remark
(
String
remark
){
public
WindowWorkmanPerformQuery
remark
(
String
remark
){
setRemark
(
remark
);
setRemark
(
remark
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 备注
* 设置 备注
* @param remarkList
* @param remarkList
*/
*/
public
WindowWorkmanPerformQuery
remarkList
(
List
<
String
>
remarkList
){
public
WindowWorkmanPerformQuery
remarkList
(
List
<
String
>
remarkList
){
this
.
remarkList
=
remarkList
;
this
.
remarkList
=
remarkList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 附件名称
* 设置 附件名称
* @param annex
* @param annex
*/
*/
public
WindowWorkmanPerformQuery
annex
(
String
annex
){
public
WindowWorkmanPerformQuery
annex
(
String
annex
){
setAnnex
(
annex
);
setAnnex
(
annex
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 附件名称
* 设置 附件名称
* @param annexList
* @param annexList
*/
*/
public
WindowWorkmanPerformQuery
annexList
(
List
<
String
>
annexList
){
public
WindowWorkmanPerformQuery
annexList
(
List
<
String
>
annexList
){
this
.
annexList
=
annexList
;
this
.
annexList
=
annexList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 附件地址
* 设置 附件地址
* @param annexUrl
* @param annexUrl
*/
*/
public
WindowWorkmanPerformQuery
annexUrl
(
String
annexUrl
){
public
WindowWorkmanPerformQuery
annexUrl
(
String
annexUrl
){
setAnnexUrl
(
annexUrl
);
setAnnexUrl
(
annexUrl
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 附件地址
* 设置 附件地址
* @param annexUrlList
* @param annexUrlList
*/
*/
public
WindowWorkmanPerformQuery
annexUrlList
(
List
<
String
>
annexUrlList
){
public
WindowWorkmanPerformQuery
annexUrlList
(
List
<
String
>
annexUrlList
){
this
.
annexUrlList
=
annexUrlList
;
this
.
annexUrlList
=
annexUrlList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 填报状态0暂存1提交
* 设置 填报状态0暂存1提交
* @param fillStatus
* @param fillStatus
*/
*/
public
WindowWorkmanPerformQuery
fillStatus
(
Integer
fillStatus
){
public
WindowWorkmanPerformQuery
fillStatus
(
Integer
fillStatus
){
setFillStatus
(
fillStatus
);
setFillStatus
(
fillStatus
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 填报状态0暂存1提交
* 设置 开始 填报状态0暂存1提交
* @param fillStatusStart
* @param fillStatusStart
*/
*/
public
WindowWorkmanPerformQuery
fillStatusStart
(
Integer
fillStatusStart
){
public
WindowWorkmanPerformQuery
fillStatusStart
(
Integer
fillStatusStart
){
this
.
fillStatusStart
=
fillStatusStart
;
this
.
fillStatusStart
=
fillStatusStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 填报状态0暂存1提交
* 设置 结束 填报状态0暂存1提交
* @param fillStatusEnd
* @param fillStatusEnd
*/
*/
public
WindowWorkmanPerformQuery
fillStatusEnd
(
Integer
fillStatusEnd
){
public
WindowWorkmanPerformQuery
fillStatusEnd
(
Integer
fillStatusEnd
){
this
.
fillStatusEnd
=
fillStatusEnd
;
this
.
fillStatusEnd
=
fillStatusEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 填报状态0暂存1提交
* 设置 增加 填报状态0暂存1提交
* @param fillStatusIncrement
* @param fillStatusIncrement
*/
*/
public
WindowWorkmanPerformQuery
fillStatusIncrement
(
Integer
fillStatusIncrement
){
public
WindowWorkmanPerformQuery
fillStatusIncrement
(
Integer
fillStatusIncrement
){
this
.
fillStatusIncrement
=
fillStatusIncrement
;
this
.
fillStatusIncrement
=
fillStatusIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 填报状态0暂存1提交
* 设置 填报状态0暂存1提交
* @param fillStatusList
* @param fillStatusList
*/
*/
public
WindowWorkmanPerformQuery
fillStatusList
(
List
<
Integer
>
fillStatusList
){
public
WindowWorkmanPerformQuery
fillStatusList
(
List
<
Integer
>
fillStatusList
){
this
.
fillStatusList
=
fillStatusList
;
this
.
fillStatusList
=
fillStatusList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 填报状态0暂存1提交
* 设置 填报状态0暂存1提交
* @param fillStatusNotList
* @param fillStatusNotList
*/
*/
public
WindowWorkmanPerformQuery
fillStatusNotList
(
List
<
Integer
>
fillStatusNotList
){
public
WindowWorkmanPerformQuery
fillStatusNotList
(
List
<
Integer
>
fillStatusNotList
){
this
.
fillStatusNotList
=
fillStatusNotList
;
this
.
fillStatusNotList
=
fillStatusNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserId
* @param createUserId
*/
*/
public
WindowWorkmanPerformQuery
createUserId
(
Long
createUserId
){
public
WindowWorkmanPerformQuery
createUserId
(
Long
createUserId
){
setCreateUserId
(
createUserId
);
setCreateUserId
(
createUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 创建用户
* 设置 开始 创建用户
* @param createUserIdStart
* @param createUserIdStart
*/
*/
public
WindowWorkmanPerformQuery
createUserIdStart
(
Long
createUserIdStart
){
public
WindowWorkmanPerformQuery
createUserIdStart
(
Long
createUserIdStart
){
this
.
createUserIdStart
=
createUserIdStart
;
this
.
createUserIdStart
=
createUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 创建用户
* 设置 结束 创建用户
* @param createUserIdEnd
* @param createUserIdEnd
*/
*/
public
WindowWorkmanPerformQuery
createUserIdEnd
(
Long
createUserIdEnd
){
public
WindowWorkmanPerformQuery
createUserIdEnd
(
Long
createUserIdEnd
){
this
.
createUserIdEnd
=
createUserIdEnd
;
this
.
createUserIdEnd
=
createUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 创建用户
* 设置 增加 创建用户
* @param createUserIdIncrement
* @param createUserIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
public
WindowWorkmanPerformQuery
createUserIdIncrement
(
Long
createUserIdIncrement
){
this
.
createUserIdIncrement
=
createUserIdIncrement
;
this
.
createUserIdIncrement
=
createUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdList
* @param createUserIdList
*/
*/
public
WindowWorkmanPerformQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
public
WindowWorkmanPerformQuery
createUserIdList
(
List
<
Long
>
createUserIdList
){
this
.
createUserIdList
=
createUserIdList
;
this
.
createUserIdList
=
createUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 创建用户
* 设置 创建用户
* @param createUserIdNotList
* @param createUserIdNotList
*/
*/
public
WindowWorkmanPerformQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
public
WindowWorkmanPerformQuery
createUserIdNotList
(
List
<
Long
>
createUserIdNotList
){
this
.
createUserIdNotList
=
createUserIdNotList
;
this
.
createUserIdNotList
=
createUserIdNotList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserId
* @param updateUserId
*/
*/
public
WindowWorkmanPerformQuery
updateUserId
(
Long
updateUserId
){
public
WindowWorkmanPerformQuery
updateUserId
(
Long
updateUserId
){
setUpdateUserId
(
updateUserId
);
setUpdateUserId
(
updateUserId
);
return
this
;
return
this
;
}
}
/**
/**
* 设置 开始 更新用户
* 设置 开始 更新用户
* @param updateUserIdStart
* @param updateUserIdStart
*/
*/
public
WindowWorkmanPerformQuery
updateUserIdStart
(
Long
updateUserIdStart
){
public
WindowWorkmanPerformQuery
updateUserIdStart
(
Long
updateUserIdStart
){
this
.
updateUserIdStart
=
updateUserIdStart
;
this
.
updateUserIdStart
=
updateUserIdStart
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 结束 更新用户
* 设置 结束 更新用户
* @param updateUserIdEnd
* @param updateUserIdEnd
*/
*/
public
WindowWorkmanPerformQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
public
WindowWorkmanPerformQuery
updateUserIdEnd
(
Long
updateUserIdEnd
){
this
.
updateUserIdEnd
=
updateUserIdEnd
;
this
.
updateUserIdEnd
=
updateUserIdEnd
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 增加 更新用户
* 设置 增加 更新用户
* @param updateUserIdIncrement
* @param updateUserIdIncrement
*/
*/
public
WindowWorkmanPerformQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
public
WindowWorkmanPerformQuery
updateUserIdIncrement
(
Long
updateUserIdIncrement
){
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
this
.
updateUserIdIncrement
=
updateUserIdIncrement
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdList
* @param updateUserIdList
*/
*/
public
WindowWorkmanPerformQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
public
WindowWorkmanPerformQuery
updateUserIdList
(
List
<
Long
>
updateUserIdList
){
this
.
updateUserIdList
=
updateUserIdList
;
this
.
updateUserIdList
=
updateUserIdList
;
return
this
;
return
this
;
}
}
/**
/**
* 设置 更新用户
* 设置 更新用户
* @param updateUserIdNotList
* @param updateUserIdNotList
*/
*/
public
WindowWorkmanPerformQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
public
WindowWorkmanPerformQuery
updateUserIdNotList
(
List
<
Long
>
updateUserIdNotList
){
this
.
updateUserIdNotList
=
updateUserIdNotList
;
this
.
updateUserIdNotList
=
updateUserIdNotList
;
return
this
;
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
<
WindowWorkmanPerformQuery
>
getOrConditionList
(){
public
List
<
WindowWorkmanPerformQuery
>
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
<
WindowWorkmanPerformQuery
>
orConditionList
){
public
void
setOrConditionList
(
List
<
WindowWorkmanPerformQuery
>
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
<
WindowWorkmanPerformQuery
>
getAndConditionList
(){
public
List
<
WindowWorkmanPerformQuery
>
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
<
WindowWorkmanPerformQuery
>
andConditionList
){
public
void
setAndConditionList
(
List
<
WindowWorkmanPerformQuery
>
andConditionList
){
this
.
andConditionList
=
andConditionList
;
this
.
andConditionList
=
andConditionList
;
}
}
...
...
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