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
5f7ca850
Commit
5f7ca850
authored
Mar 27, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
注释
parent
a30c86de
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
Config.java
...rc/main/java/com/gic/haoban/manage/web/config/Config.java
+9
-3
LicenceOrderController.java
.../haoban/manage/web/controller/LicenceOrderController.java
+2
-5
No files found.
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/config/Config.java
View file @
5f7ca850
/*
package com.gic.haoban.manage.web.config;
package com.gic.haoban.manage.web.config;
import com.ctrip.framework.apollo.spring.annotation.EnableApolloConfig;
import com.ctrip.framework.apollo.spring.annotation.EnableApolloConfig;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Configuration;
*/
/**
/**
* Created by tgs on 2020/2/23.
* Created by tgs on 2020/2/23.
*/
*//*
@Configuration
@Configuration
@EnableApolloConfig
@EnableApolloConfig
public class Config {
public class Config {
...
@@ -19,9 +22,11 @@ public class Config {
...
@@ -19,9 +22,11 @@ public class Config {
@Value("${wxSuiteid}")
@Value("${wxSuiteid}")
private String wxSuiteid;
private String wxSuiteid;
/**
* 企业微信许可账号购买信息
*/
*/
/**
* 企业微信许可账号购买信息
*//*
@Value("${accountName}")
@Value("${accountName}")
private String accountName;
private String accountName;
@Value("${accountNumber}")
@Value("${accountNumber}")
...
@@ -85,3 +90,4 @@ public class Config {
...
@@ -85,3 +90,4 @@ public class Config {
this.wxSuiteid = wxSuiteid;
this.wxSuiteid = wxSuiteid;
}
}
}
}
*/
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/LicenceOrderController.java
View file @
5f7ca850
...
@@ -19,7 +19,6 @@ import com.gic.haoban.manage.api.dto.licence.LicenceOrderPageDTO;
...
@@ -19,7 +19,6 @@ import com.gic.haoban.manage.api.dto.licence.LicenceOrderPageDTO;
import
com.gic.haoban.manage.api.dto.qdto.licence.LicenceOrderPageQDTO
;
import
com.gic.haoban.manage.api.dto.qdto.licence.LicenceOrderPageQDTO
;
import
com.gic.haoban.manage.api.service.WxEnterpriseApiService
;
import
com.gic.haoban.manage.api.service.WxEnterpriseApiService
;
import
com.gic.haoban.manage.api.service.licence.LicenceOrderApiService
;
import
com.gic.haoban.manage.api.service.licence.LicenceOrderApiService
;
import
com.gic.haoban.manage.web.config.Config
;
import
com.gic.haoban.manage.web.errCode.HaoBanErrCode
;
import
com.gic.haoban.manage.web.errCode.HaoBanErrCode
;
import
com.gic.haoban.manage.web.qo.licence.LicenceOrderPageQO
;
import
com.gic.haoban.manage.web.qo.licence.LicenceOrderPageQO
;
import
com.gic.haoban.manage.web.vo.licence.LicenceOrderPageVO
;
import
com.gic.haoban.manage.web.vo.licence.LicenceOrderPageVO
;
...
@@ -54,8 +53,6 @@ public class LicenceOrderController {
...
@@ -54,8 +53,6 @@ public class LicenceOrderController {
private
EnterpriseService
enterpriseService
;
private
EnterpriseService
enterpriseService
;
@Autowired
@Autowired
private
WxEnterpriseApiService
wxEnterpriseApiService
;
private
WxEnterpriseApiService
wxEnterpriseApiService
;
@Autowired
private
Config
config
;
/**
/**
* 查询订单详情
* 查询订单详情
...
@@ -190,7 +187,7 @@ public class LicenceOrderController {
...
@@ -190,7 +187,7 @@ public class LicenceOrderController {
/**
/**
* 查询开户信息
* 查询开户信息
*/
*/
@RequestMapping
(
"get-account-info"
)
/*
@RequestMapping("get-account-info")
public RestResponse<HashMap<String, String>> getAccountInfo() {
public RestResponse<HashMap<String, String>> getAccountInfo() {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
if (loginUser == null || StringUtils.isBlank(loginUser.getEnterpriseId())) {
if (loginUser == null || StringUtils.isBlank(loginUser.getEnterpriseId())) {
...
@@ -201,6 +198,6 @@ public class LicenceOrderController {
...
@@ -201,6 +198,6 @@ public class LicenceOrderController {
result.put("accountNumber",config.getAccountNumber());
result.put("accountNumber",config.getAccountNumber());
result.put("bankName",config.getBankName());
result.put("bankName",config.getBankName());
return RestResponse.successResult(result);
return RestResponse.successResult(result);
}
}
*/
}
}
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