Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
fhjw
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
mengmeng
fhjw
Commits
dd8c30e9
Commit
dd8c30e9
authored
Aug 12, 2021
by
zhanghonggang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
月份统计修改 名字修改
parent
d3c6214b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
FhjwCommentController.java
...o/hmit/modules/fhjw/controller/FhjwCommentController.java
+2
-1
UserServiceImpl.java
...va/io/hmit/modules/fhjw/service/impl/UserServiceImpl.java
+2
-0
FhiwFunctionServiceImpl.java
...it/modules/fhjw/service/impl/FhiwFunctionServiceImpl.java
+1
-1
No files found.
hmit-admin/src/main/java/io/hmit/modules/fhjw/controller/FhjwCommentController.java
View file @
dd8c30e9
...
...
@@ -26,6 +26,7 @@ import org.springframework.web.bind.annotation.*;
import
springfox.documentation.annotations.ApiIgnore
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.Collections
;
import
java.util.List
;
import
java.util.Map
;
...
...
@@ -101,7 +102,7 @@ public class FhjwCommentController {
public
Result
<
List
<
CommitteeCountDTO
>>
getCountByMouth
()
{
List
<
CommitteeCountDTO
>
getCounts
=
fhjwCommentService
.
getCountByMouth
();
Collections
.
reverse
(
getCounts
);
return
new
Result
<
List
<
CommitteeCountDTO
>>().
ok
(
getCounts
);
}
...
...
hmit-admin/src/main/java/io/hmit/modules/fhjw/service/impl/UserServiceImpl.java
View file @
dd8c30e9
...
...
@@ -156,6 +156,8 @@ public class UserServiceImpl extends CrudServiceImpl<UserDao, UserEntity, UserDT
user
.
setMobile
(
dto
.
getMobile
());
user
.
setCreateDate
(
new
Date
());
user
.
setUserIdno
(
dto
.
getUserIdno
());
user
.
setGender
(
dto
.
getGender
());
user
.
setIdentity
(
dto
.
getIdentity
());
insert
(
user
);
//人员-权限对应关系表
...
...
hmit-api/src/main/java/io/hmit/modules/fhjw/service/impl/FhiwFunctionServiceImpl.java
View file @
dd8c30e9
...
...
@@ -132,7 +132,7 @@ public class FhiwFunctionServiceImpl extends CrudServiceImpl<FhiwFunctionDao, Fh
}
//根据是否存在代理人,判断是否添加 "我要填写评测" 的权限!
Long
funcId
=
baseDao
.
selectOne
(
new
QueryWrapper
<
FhiwFunctionEntity
>().
eq
(
"name"
,
"我要填写
评测
"
)).
getId
();
Long
funcId
=
baseDao
.
selectOne
(
new
QueryWrapper
<
FhiwFunctionEntity
>().
eq
(
"name"
,
"我要填写
测评
"
)).
getId
();
List
<
Long
>
funIds
=
new
ArrayList
<>();
if
(
flag
){
logger
.
info
(
"存在代理人"
);
...
...
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