|
@@ -1,5 +1,7 @@
|
|
package org.jeecg.modules.aa.controller;
|
|
package org.jeecg.modules.aa.controller;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
+import com.google.common.base.Strings;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
@@ -11,6 +13,7 @@ import org.jeecg.modules.aa.entity.PlatformParameter;
|
|
import org.jeecg.modules.aa.service.AaPlatFormParameterService;
|
|
import org.jeecg.modules.aa.service.AaPlatFormParameterService;
|
|
import org.jeecg.modules.aa.service.PlatFormParameterService;
|
|
import org.jeecg.modules.aa.service.PlatFormParameterService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
@@ -24,13 +27,21 @@ public class AaPlatFormParameterController extends JeecgController<AaPlatformPar
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private AaPlatFormParameterService aaPlatFormParameterService;
|
|
private AaPlatFormParameterService aaPlatFormParameterService;
|
|
-
|
|
|
|
|
|
+ @Value("${server.system.host}")
|
|
|
|
+ private String host;
|
|
|
|
|
|
|
|
|
|
@PostMapping(value = "/one")
|
|
@PostMapping(value = "/one")
|
|
public Result<AaPlatformParameter> queryPageList() {
|
|
public Result<AaPlatformParameter> queryPageList() {
|
|
-
|
|
|
|
- List<AaPlatformParameter> list = aaPlatFormParameterService.list();
|
|
|
|
|
|
+ QueryWrapper<AaPlatformParameter> aaPlatformParameterQueryWrapper = new QueryWrapper<>();
|
|
|
|
+ aaPlatformParameterQueryWrapper.select("id,phone,mailbox,remark_wenan,remark_wenan_english,remark_wenan_german,wechat_qr_code");
|
|
|
|
+ List<AaPlatformParameter> list = aaPlatFormParameterService.list(aaPlatformParameterQueryWrapper);
|
|
|
|
+/* if (!list.isEmpty()){
|
|
|
|
+ AaPlatformParameter aaPlatformParameter = list.get(0);
|
|
|
|
+ if (!Strings.isNullOrEmpty(aaPlatformParameter.getWechatQrCode()) && !aaPlatformParameter.getWechatQrCode().startsWith("http")){
|
|
|
|
+ aaPlatformParameter.setWechatQrCode(host + "/" + aaPlatformParameter.getWechatQrCode());
|
|
|
|
+ }
|
|
|
|
+ }*/
|
|
return Result.OK(list.get( 0 ));
|
|
return Result.OK(list.get( 0 ));
|
|
}
|
|
}
|
|
|
|
|