springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/constants/Constants.java
@@ -144,4 +144,6 @@ public static final String GRID_DEFAULT_ROLE_KEY="grid_member_default_role"; public static final String ZONG_ZHI_GRID_MEMBER_IMAGE_URL = "https://www.psciio.com//idcard/57bf4104a76741cfabfead0bb8218307.jpg"; public static final String ZZ_APP_TAG_LIST = "{\"list\":[\"流动人口\",\"户籍人口\",\"社区矫正\",\"吸毒人员\",\"重精患者\",\"刑满释放\"]}"; } springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -3063,4 +3063,7 @@ @PostMapping("/screen/work/getScreenMicroList") R getScreenMicroList(@RequestBody ScreenMicroListDTO microListDTO); @GetMapping("/sys/conf/get") R getConf(@RequestParam("code") String code); } springcloud_k8s_panzhihuazhihuishequ/grid_app/src/main/java/com/panzhihua/grid_app/api/CommonApi.java
@@ -2,6 +2,7 @@ import com.panzhihua.common.constants.FtpConstants; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.service.community.CommunityService; import com.panzhihua.common.utlis.SFTPUtil; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; @@ -45,6 +46,9 @@ private int port; @Value("${ftp.url}") private String url; @Resource private CommunityService communityService; /** * 允许的图片文件后缀 @@ -150,4 +154,10 @@ sftp.logout(); return R.ok(urlList); } @GetMapping("/getConf/noToken") @ApiOperation(value = "根据code查询系统配置") public R getConf(@PathVariable("code") String code){ return communityService.getConf(code); } } springcloud_k8s_panzhihuazhihuishequ/grid_app/src/main/java/com/panzhihua/grid_app/api/PopulationApi.java
New file @@ -0,0 +1,19 @@ package com.panzhihua.grid_app.api; import com.panzhihua.common.controller.BaseController; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Slf4j @RestController @RequestMapping("/population") @Api(tags = {"网格综治居民管理 @lyq"}) public class PopulationApi extends BaseController { } springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/SysConfApi.java
New file @@ -0,0 +1,30 @@ package com.panzhihua.service_community.api; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.model.vos.R; import com.panzhihua.service_community.model.dos.SysConfDO; import com.panzhihua.service_community.service.SysConfService; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; @Slf4j @RestController @RequestMapping("/sys/conf/") public class SysConfApi { @Resource private SysConfService sysConfService; @GetMapping("get") public R get(@RequestParam("code") String code) { SysConfDO sysConfDO = sysConfService.getOne(new QueryWrapper<SysConfDO>().lambda().eq(SysConfDO::getCode,code)); String value = Constants.ZZ_APP_TAG_LIST; if(sysConfDO != null){ value = sysConfDO.getValue(); } return R.ok(value); } } springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/SysConfService.java
New file @@ -0,0 +1,13 @@ package com.panzhihua.service_community.service; import com.baomidou.mybatisplus.extension.service.IService; import com.panzhihua.service_community.model.dos.SysConfDO; /** * @auther lyq * @create 2021-06-23 10:41:36 * @describe 系统配置表服务类 */ public interface SysConfService extends IService<SysConfDO> { } springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/SysConfServiceImpl.java
New file @@ -0,0 +1,19 @@ package com.panzhihua.service_community.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.panzhihua.service_community.dao.SysConfMapper; import com.panzhihua.service_community.model.dos.SysConfDO; import com.panzhihua.service_community.service.SysConfService; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; /** * @auther lyq * @create 2021-06-23 10:41:36 * @describe 系统配置表服务实现类 */ @Slf4j @Service public class SysConfServiceImpl extends ServiceImpl<SysConfMapper, SysConfDO> implements SysConfService { }