Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王琮
platform
Commits
4f8167e3
Commit
4f8167e3
authored
Jul 11, 2023
by
赵桢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加备注
parent
0f9a313a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
13 deletions
+15
-13
Questionnaire.java
src/main/java/com/tiptimes/model/Questionnaire.java
+11
-8
Record.java
src/main/java/com/tiptimes/model/Record.java
+4
-5
No files found.
src/main/java/com/tiptimes/model/Questionnaire.java
View file @
4f8167e3
package
com
.
tiptimes
.
model
;
package
com
.
tiptimes
.
model
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
...
@@ -16,7 +17,9 @@ public class Questionnaire {//问卷相关数据返回Vo
...
@@ -16,7 +17,9 @@ public class Questionnaire {//问卷相关数据返回Vo
private
Integer
type
;
//0暂存 1上报
private
Integer
type
;
//0暂存 1上报
private
String
writePeople
;
//填报人
private
String
writePeople
;
//填报人
private
Integer
qnYear
;
//上报年份
private
Integer
qnYear
;
//上报年份
private
List
<
Review
>
reviewList
;
//审核备注
private
List
<
Review
>
reviewList
;
//审核备注
private
Integer
countYearQuestion
;
//统计生成问卷条数
private
List
<
YearId
>
yearIdList
;
//当前年份--问题id
public
Integer
getCountYearQuestion
()
{
public
Integer
getCountYearQuestion
()
{
return
countYearQuestion
;
return
countYearQuestion
;
...
@@ -26,10 +29,6 @@ public class Questionnaire {//问卷相关数据返回Vo
...
@@ -26,10 +29,6 @@ public class Questionnaire {//问卷相关数据返回Vo
this
.
countYearQuestion
=
countYearQuestion
;
this
.
countYearQuestion
=
countYearQuestion
;
}
}
private
Integer
countYearQuestion
;
private
List
<
YearId
>
yearIdList
;
//当前年份--问题id
public
String
getQuestionnaireUuid
()
{
public
String
getQuestionnaireUuid
()
{
return
questionnaireUuid
;
return
questionnaireUuid
;
}
}
...
@@ -54,9 +53,13 @@ public class Questionnaire {//问卷相关数据返回Vo
...
@@ -54,9 +53,13 @@ public class Questionnaire {//问卷相关数据返回Vo
this
.
reviewList
=
reviewList
;
this
.
reviewList
=
reviewList
;
}
}
public
List
<
YearId
>
getYearIdList
(){
return
yearIdList
;}
public
List
<
YearId
>
getYearIdList
()
{
return
yearIdList
;
}
public
void
setYearIdList
(
List
<
YearId
>
yearIdList
){
this
.
yearIdList
=
yearIdList
;}
public
void
setYearIdList
(
List
<
YearId
>
yearIdList
)
{
this
.
yearIdList
=
yearIdList
;
}
public
String
getCreateId
()
{
public
String
getCreateId
()
{
return
createId
;
return
createId
;
...
@@ -146,7 +149,7 @@ public class Questionnaire {//问卷相关数据返回Vo
...
@@ -146,7 +149,7 @@ public class Questionnaire {//问卷相关数据返回Vo
this
.
qnYear
=
qnYear
;
this
.
qnYear
=
qnYear
;
}
}
public
Questionnaire
(
Long
id
,
String
questionnaireName
,
int
status
,
String
createBy
,
Date
createTime
,
Integer
qnYear
)
{
public
Questionnaire
(
Long
id
,
String
questionnaireName
,
int
status
,
String
createBy
,
Date
createTime
,
Integer
qnYear
)
{
this
.
id
=
id
;
this
.
id
=
id
;
this
.
questionnaireName
=
questionnaireName
;
this
.
questionnaireName
=
questionnaireName
;
this
.
status
=
status
;
this
.
status
=
status
;
...
...
src/main/java/com/tiptimes/model/Record.java
View file @
4f8167e3
...
@@ -18,6 +18,10 @@ public class Record {//上报记录表
...
@@ -18,6 +18,10 @@ public class Record {//上报记录表
private
String
writePeople
;
//填报人
private
String
writePeople
;
//填报人
private
Integer
qnYear
;
//上报年份
private
Integer
qnYear
;
//上报年份
private
Integer
countYear
;
//统计生成上报记录条数
private
Integer
start
;
private
Integer
length
;
public
Integer
getCountYear
()
{
public
Integer
getCountYear
()
{
return
countYear
;
return
countYear
;
}
}
...
@@ -25,11 +29,6 @@ public class Record {//上报记录表
...
@@ -25,11 +29,6 @@ public class Record {//上报记录表
public
void
setCountYear
(
Integer
countYear
)
{
public
void
setCountYear
(
Integer
countYear
)
{
this
.
countYear
=
countYear
;
this
.
countYear
=
countYear
;
}
}
private
Integer
countYear
;
private
Integer
start
;
private
Integer
length
;
public
Integer
getQnYear
()
{
public
Integer
getQnYear
()
{
return
qnYear
;
return
qnYear
;
}
}
...
...
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