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
Expand all
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
;
import
java.util.List
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.ArrayList
;
...
...
@@ -9,80 +10,92 @@ import com.fasterxml.jackson.annotation.JsonFormat;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.window.model.vo.WindowWorkmanPerformVo
;
import
com.mortals.xhx.module.window.model.WindowWorkmanPerformDetailEntity
;
import
lombok.Data
;
/**
* 窗口人员考核汇总登记实体对象
*
* @author zxfei
* @date 2024-01-1
7
*/
* 窗口人员考核汇总登记实体对象
*
* @author zxfei
* @date 2024-01-2
7
*/
@Data
public
class
WindowWorkmanPerformEntity
extends
WindowWorkmanPerformVo
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 考核年度
*/
* 考核年度
*/
private
Integer
year
;
/**
* 考核月份
*/
* 考核月份
*/
private
Integer
month
;
/**
* 窗口ID
*/
* 窗口ID
*/
private
Long
windowId
;
/**
* 窗口名称
*/
* 窗口名称
*/
private
String
windowName
;
/**
* 窗口负责人id
*/
* 窗口负责人id
*/
private
Long
ownerId
;
/**
* 窗口负责人名称
*/
* 窗口负责人名称
*/
private
String
ownerName
;
/**
* 所属部门id
*/
* 所属部门id
*/
private
Long
deptId
;
/**
* 所属部门名称
*/
* 所属部门名称
*/
private
String
deptName
;
/**
* 所属大厅
*/
* 所属大厅
*/
private
Long
salaId
;
/**
* 所属大厅名称
*/
* 所属大厅名称
*/
private
String
salaName
;
/**
* 备注
*/
* 备注
*/
private
String
remark
;
/**
* 附件名称
*/
* 附件名称
*/
private
String
annex
;
/**
* 附件地址
*/
* 附件地址
*/
private
String
annexUrl
;
/**
* 填报时间
*/
* 填报时间
*/
private
Date
fillDate
;
/**
* 填报状态0暂存1提交
*/
* 填报状态0暂存1提交
*/
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
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
}
@Override
public
boolean
equals
(
Object
obj
)
{
...
...
@@ -90,27 +103,27 @@ public class WindowWorkmanPerformEntity extends WindowWorkmanPerformVo {
if
(
obj
instanceof
WindowWorkmanPerformEntity
)
{
WindowWorkmanPerformEntity
tmp
=
(
WindowWorkmanPerformEntity
)
obj
;
if
(
this
.
getId
()
==
tmp
.
getId
())
{
return
true
;
return
true
;
}
}
return
false
;
}
public
void
initAttrValue
(){
this
.
year
=
DateUtil
.
year
(
new
Date
());
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
windowId
=
null
;
this
.
windowName
=
""
;
this
.
ownerId
=
null
;
this
.
ownerName
=
""
;
this
.
deptId
=
null
;
this
.
deptName
=
""
;
this
.
salaId
=
null
;
this
.
salaName
=
""
;
this
.
remark
=
""
;
this
.
annex
=
""
;
this
.
annexUrl
=
""
;
this
.
fillDate
=
new
Date
();
this
.
fillStatus
=
0
;
this
.
year
=
DateUtil
.
year
(
new
Date
());
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
windowId
=
null
;
this
.
windowName
=
""
;
this
.
ownerId
=
null
;
this
.
ownerName
=
""
;
this
.
deptId
=
null
;
this
.
deptName
=
""
;
this
.
salaId
=
null
;
this
.
salaName
=
""
;
this
.
remark
=
""
;
this
.
annex
=
""
;
this
.
annexUrl
=
""
;
this
.
fillDate
=
new
Date
();
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
This diff is collapsed.
Click to expand it.
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