Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
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
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
352d5db3
Commit
352d5db3
authored
Apr 03, 2023
by
吴卿华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改题目导入时报错问题
parent
3b66eec1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
TBankSubjectController.java
.../zehong/web/controller/system/TBankSubjectController.java
+8
-1
No files found.
danger-manage-admin/src/main/java/com/zehong/web/controller/system/TBankSubjectController.java
View file @
352d5db3
package
com
.
zehong
.
web
.
controller
.
system
;
import
java.io.IOException
;
import
java.math.BigDecimal
;
import
java.math.RoundingMode
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
...
...
@@ -156,8 +158,12 @@ public class TBankSubjectController extends BaseController
excelEntity
.
setBankId
(
bankId
);
/**题目*/
excelEntity
.
setTopicTitle
(
row
.
getCell
(
0
).
toString
());
String
s1
=
row
.
getCell
(
10
).
toString
();
String
s2
=
StringUtils
.
substringBefore
(
s1
,
"."
);
/**题目类型*/
excelEntity
.
setTopicType
(
Integer
.
valueOf
(
row
.
getCell
(
10
).
toString
()
));
excelEntity
.
setTopicType
(
Integer
.
valueOf
(
s2
));
/**题目*/
for
(
int
s
=
1
;
s
<=
8
;
s
++){
JSONObject
jsonObject
=
new
JSONObject
();
...
...
@@ -166,6 +172,7 @@ public class TBankSubjectController extends BaseController
jsonArray
.
add
(
jsonObject
);
}
}
System
.
out
.
println
(
row
.
getCell
(
9
).
toString
());
/**答案*/
excelEntity
.
setAnswer
(
row
.
getCell
(
9
).
toString
());
...
...
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