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
f89723f9
Commit
f89723f9
authored
Nov 01, 2022
by
王国存
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
问卷管理-评分提交添加
parent
3aeff8e0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
Answer.java
src/main/java/com/tiptimes/model/Answer.java
+12
-1
No files found.
src/main/java/com/tiptimes/model/Answer.java
View file @
f89723f9
...
@@ -8,6 +8,8 @@ public class Answer {//上报数据表(每条上报记录的详细数据表)
...
@@ -8,6 +8,8 @@ public class Answer {//上报数据表(每条上报记录的详细数据表)
private
int
recordId
;
//上报记录id
private
int
recordId
;
//上报记录id
private
String
remark
;
//备注
private
String
remark
;
//备注
private
int
score
;
//分数
public
String
getRemark
()
{
public
String
getRemark
()
{
return
remark
;
return
remark
;
}
}
...
@@ -56,14 +58,23 @@ public class Answer {//上报数据表(每条上报记录的详细数据表)
...
@@ -56,14 +58,23 @@ public class Answer {//上报数据表(每条上报记录的详细数据表)
this
.
recordId
=
recordId
;
this
.
recordId
=
recordId
;
}
}
public
int
getScore
()
{
return
score
;
}
public
void
setScore
(
int
score
)
{
this
.
score
=
score
;
}
public
Answer
()
{
public
Answer
()
{
}
}
public
Answer
(
Long
id
,
Long
optionsId
,
String
value
,
int
group
,
int
recordId
)
{
public
Answer
(
Long
id
,
Long
optionsId
,
String
value
,
int
group
,
int
recordId
,
int
score
)
{
this
.
id
=
id
;
this
.
id
=
id
;
this
.
optionsId
=
optionsId
;
this
.
optionsId
=
optionsId
;
this
.
value
=
value
;
this
.
value
=
value
;
this
.
group
=
group
;
this
.
group
=
group
;
this
.
recordId
=
recordId
;
this
.
recordId
=
recordId
;
this
.
score
=
score
;
}
}
}
}
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