Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
8a2f4ad7
Commit
8a2f4ad7
authored
Jun 30, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
好办自建应用菜单过滤取消
parent
787e306b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
AppOrderApiServiceImpl.java
...vice/service/out/impl/licence/AppOrderApiServiceImpl.java
+2
-2
AppOrderController.java
...ban/manage/web/controller/licence/AppOrderController.java
+14
-0
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/licence/AppOrderApiServiceImpl.java
View file @
8a2f4ad7
...
@@ -282,9 +282,9 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
...
@@ -282,9 +282,9 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
}
else
{
}
else
{
result
.
setUserNum
(
num
);
result
.
setUserNum
(
num
);
}
}
if
(
now
.
before
(
e
ndTime
)){
if
(
now
.
before
(
appOrderE
ndTime
)){
result
.
setType
(
2
);
result
.
setType
(
2
);
result
.
setEndTime
(
e
ndTime
);
result
.
setEndTime
(
appOrderE
ndTime
);
result
.
setBeginTime
(
beginTime
);
result
.
setBeginTime
(
beginTime
);
}
else
{
}
else
{
result
.
setType
(
1
);
result
.
setType
(
1
);
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/licence/AppOrderController.java
View file @
8a2f4ad7
...
@@ -127,5 +127,19 @@ public class AppOrderController {
...
@@ -127,5 +127,19 @@ public class AppOrderController {
return
RestResponse
.
successResult
(
vo
);
return
RestResponse
.
successResult
(
vo
);
}
}
@RequestMapping
(
"app-order-test"
)
public
RestResponse
<
Boolean
>
test
(
String
param
)
{
WebLoginDTO
loginUser
=
AuthWebRequestUtil
.
getLoginUser
();
if
(
loginUser
==
null
||
StringUtils
.
isBlank
(
loginUser
.
getEnterpriseId
()))
{
return
RestResponse
.
failure
(
Convert
.
toStr
(
HaoBanErrCode
.
ERR_4
.
getCode
()),
HaoBanErrCode
.
ERR_4
.
getMsg
());
}
ServiceResponse
<
Boolean
>
response
=
appOrderApiService
.
qywxCallBack
(
param
);
if
(
response
.
isSuccess
()){
logger
.
info
(
"定时数据返回结果测试"
);
return
RestResponse
.
successResult
(
true
);
}
return
RestResponse
.
failure
(
response
.
getCode
(),
response
.
getMessage
());
}
}
}
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