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
4a802f4b
Commit
4a802f4b
authored
Jul 15, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加照片海康下载
parent
562da3b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
...a/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
+1
-2
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/busiz/h5/web/FeedbackApiController.java
View file @
4a802f4b
...
...
@@ -86,8 +86,6 @@ public class FeedbackApiController extends AbstractBaseController<FeedbackReq> {
feedbackQuery
.
setIdList
(
feedbackIdList
);
Result
<
FeedbackEntity
>
result
=
feedbackService
.
find
(
feedbackQuery
,
pageAllInfo
,
null
);
model
.
put
(
PAGEINFO_KEY
,
result
.
getPageInfo
());
model
.
put
(
KEY_RESULT_DATA
,
result
.
getList
());
parsePageInfo
(
model
,
result
.
getPageInfo
());
...
...
@@ -135,6 +133,7 @@ public class FeedbackApiController extends AbstractBaseController<FeedbackReq> {
//如果时间已经结束 则不能再提交
FeedbackEntity
feedbackEntity
=
feedbackService
.
get
(
req
.
getFeedbackId
(),
context
);
if
(
ObjectUtils
.
isEmpty
(
feedbackEntity
))
throw
new
AppException
(
"未找到当前问卷,请联系管理员!"
);
if
(
DateUtil
.
compare
(
new
Date
(),
feedbackEntity
.
getFeedbackTimeStart
())
<
0
)
throw
new
AppException
(
"当前反馈问卷信息还未开始!"
);
if
(
DateUtil
.
compare
(
new
Date
(),
feedbackEntity
.
getFeedbackTimeEnd
())
>
0
)
...
...
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