Commit 5f7ca850 by jinxin

注释

parent a30c86de
/*
package com.gic.haoban.manage.web.config;
import com.ctrip.framework.apollo.spring.annotation.EnableApolloConfig;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
*/
/**
* Created by tgs on 2020/2/23.
*/
*//*
@Configuration
@EnableApolloConfig
public class Config {
......@@ -19,9 +22,11 @@ public class Config {
@Value("${wxSuiteid}")
private String wxSuiteid;
/**
* 企业微信许可账号购买信息
*/
/**
* 企业微信许可账号购买信息
*//*
@Value("${accountName}")
private String accountName;
@Value("${accountNumber}")
......@@ -85,3 +90,4 @@ public class Config {
this.wxSuiteid = wxSuiteid;
}
}
*/
......@@ -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.service.WxEnterpriseApiService;
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.qo.licence.LicenceOrderPageQO;
import com.gic.haoban.manage.web.vo.licence.LicenceOrderPageVO;
......@@ -54,8 +53,6 @@ public class LicenceOrderController {
private EnterpriseService enterpriseService;
@Autowired
private WxEnterpriseApiService wxEnterpriseApiService;
@Autowired
private Config config;
/**
* 查询订单详情
......@@ -190,7 +187,7 @@ public class LicenceOrderController {
/**
* 查询开户信息
*/
@RequestMapping("get-account-info")
/*@RequestMapping("get-account-info")
public RestResponse<HashMap<String, String>> getAccountInfo() {
WebLoginDTO loginUser = AuthWebRequestUtil.getLoginUser();
if (loginUser == null || StringUtils.isBlank(loginUser.getEnterpriseId())) {
......@@ -201,6 +198,6 @@ public class LicenceOrderController {
result.put("accountNumber",config.getAccountNumber());
result.put("bankName",config.getBankName());
return RestResponse.successResult(result);
}
}*/
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment