.gitignore
@@ -1,4 +1,6 @@ /springcloud_k8s_panzhihuazhihuishequ/common/LOG_HOME_IS_UNDEFINED/ .idea .idea *.iml *.log springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java
@@ -3,6 +3,7 @@ import cn.hutool.core.util.StrUtil; import com.alibaba.fastjson.JSONObject; import com.panzhihua.applets.weixin.CheckService; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.dtos.common.PageComMngVolunteerOrgTeamDto; import com.panzhihua.common.model.dtos.common.PageComMngVolunteerServiceTypeDto; @@ -167,7 +168,7 @@ if (StrUtil.isNotBlank(evaluateContent)) { String result = checkService.checkMessageBy(evaluateContent, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } @@ -175,7 +176,7 @@ String photo = comActActEvaluateVO.getPhoto(); if (StrUtil.isNotBlank(photo)) { if (!checkService.checkImageBy(photo, appId)) { return R.fail("上传图片存在违规信息"); return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息"); } } return communityService.activityEvaluate(comActActEvaluateVO); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/DiscussApi.java
@@ -2,6 +2,7 @@ import cn.hutool.core.util.StrUtil; import com.panzhihua.applets.weixin.CheckService; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.dtos.community.*; import com.panzhihua.common.model.dtos.community.integral.admin.AddComActIntegralUserDTO; @@ -54,7 +55,7 @@ if (StrUtil.isNotBlank(discussSubject)) { String result = checkService.checkMessageBy(discussSubject, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } @@ -62,7 +63,7 @@ String photoPah = comActDiscussDTO.getPhotoPah(); if (StrUtil.isNotBlank(photoPah)) { if (!checkService.checkImageBy(photoPah, appId)) { return R.fail("上传图片存在违规信息"); return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息"); } } @@ -130,7 +131,7 @@ } String result = checkService.checkMessageBy(comment, this.getLoginUserInfo().getOpenid(), this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } comActDiscussCommentDTO.setUserId(this.getUserId()); // 议事投票计算积分 @@ -197,7 +198,7 @@ } String result = checkService.checkMessageBy(comment, this.getLoginUserInfo().getOpenid(), this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } comActDiscussCommentDTO.setUserId(this.getUserId()); return communityService.addDiscussCommentBack(comActDiscussCommentDTO); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/HouseApi.java
@@ -2,6 +2,8 @@ import javax.annotation.Resource; import cn.hutool.core.util.StrUtil; import com.panzhihua.common.constants.Constants; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; @@ -43,8 +45,11 @@ public R addHouse(@RequestBody @Validated(AddGroup.class) ComOpsHouseDTO comOpsHouseDTO) { // 微信内容审核 String introduction = comOpsHouseDTO.getIntroduction(); if (!checkService.checkMessage(introduction)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(introduction)) { String result = checkService.checkMessageBy(introduction, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long userId = loginUserInfo.getUserId(); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java
@@ -79,7 +79,7 @@ if (StrUtil.isNotBlank(detail)) { String result = checkService.checkMessageBy(detail, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } @@ -87,7 +87,7 @@ String photoPathList = comActEasyPhotoVO.getPhotoPathList(); if (StrUtil.isNotBlank(photoPathList)) { if (!checkService.checkImageBy(photoPathList, appId)) { return R.fail("上传图片存在违规信息"); return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); @@ -184,7 +184,7 @@ if (StrUtil.isNotBlank(comment)) { String result = checkService.checkMessageBy(comment, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } comActEasyPhotoCommentDTO.setUserId(this.getUserId()); @@ -232,8 +232,11 @@ public R addMicroWish(@RequestBody @Validated(AddGroup.class) ComActMicroWishVO comActMicroWishVO) { // 微信内容审核 String msg = comActMicroWishVO.getDetail(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); @@ -317,8 +320,11 @@ public R addMessage(@RequestBody @Validated(AddGroup.class) ComActMessageVO comActMessageVO) { // 微信内容审核 String msg = comActMessageVO.getMsgContent(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); @@ -344,8 +350,11 @@ public R addMessageBack(@RequestBody @Validated(AddGroup.class) ComActMessageBackVO comActMessageBackVO) { // 微信内容审核 String msg = comActMessageBackVO.getMsgContent(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborApi.java
@@ -2,6 +2,7 @@ import cn.hutool.core.util.StrUtil; import com.panzhihua.applets.weixin.CheckService; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.constants.NeighborCircleConstants; import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.dtos.neighbor.*; @@ -69,13 +70,13 @@ if (StrUtil.isNotBlank(releaseContent)) { String result = checkService.checkMessageBy(releaseContent, this.getLoginUserInfo().getOpenid(), this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } String releaseImages = addNeighborCircleAppDTO.getReleaseImages(); if (StrUtil.isNotBlank(releaseImages)) { if (checkService.checkImageBy(releaseImages, this.getAppId())) { return R.fail("上传图片存在违规信息"); return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息"); } } addNeighborCircleAppDTO.setUserId(userId); @@ -87,28 +88,37 @@ } //查询社区自动审核是否开着 String key = NeighborCircleConstants.NEIGHBOR_CIRCLE_AUTO_EXAMINE; R isOk = communityService.getSysConfValue(key + communityId, communityId); if (R.isOk(isOk)) { if (isOk.getData() != null) { String value = isOk.getData().toString(); if (value.equals("1")) { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); String msg = addNeighborCircleAppDTO.getReleaseContent(); if (checkService.checkMessage(msg)) { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); if (this.getAppId().equals("wx118de8a734d269f0")) { //花城直接通过 addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); } else { //西区 String key = NeighborCircleConstants.NEIGHBOR_CIRCLE_AUTO_EXAMINE; R isOk = communityService.getSysConfValue(key + communityId, communityId); if (R.isOk(isOk)) { if (isOk.getData() != null) { String value = isOk.getData().toString(); if (value.equals("1")) { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); String msg = addNeighborCircleAppDTO.getReleaseContent(); if (StrUtil.isEmpty(checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(), this.getAppId()))) { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); } else { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.no); } } else { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.no); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } } else { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); communityService.addSysConfValue(key + communityId, communityId, "社区邻里圈自动审核参数", "1"); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); } } else { communityService.addSysConfValue(key + communityId, communityId, "社区邻里圈自动审核参数", "1"); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } } else { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } return communityService.addNeighborByApp(addNeighborCircleAppDTO); @@ -177,7 +187,7 @@ if (StrUtil.isNotBlank(content)) { String result = checkService.checkMessageBy(content, this.getLoginUserInfo().getOpenid(), this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } commentAppDTO.setUserId(userId); @@ -195,7 +205,7 @@ if (StrUtil.isNotBlank(content)) { String result = checkService.checkMessageBy(content, this.getLoginUserInfo().getOpenid(), this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } replyAppDTO.setUserId(userId); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/NeighborWestApi.java
@@ -2,6 +2,7 @@ import cn.hutool.core.util.StrUtil; import com.panzhihua.applets.weixin.CheckService; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.constants.NeighborCircleConstants; import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.dtos.neighbor.*; @@ -65,7 +66,7 @@ if (StrUtil.isNotBlank(releaseContent)) { String result = checkService.checkMessageBy(releaseContent, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } @@ -73,7 +74,7 @@ String releaseImages = addNeighborCircleAppDTO.getReleaseImages(); if (StrUtil.isNotBlank(releaseImages)) { if (!checkService.checkImageBy(releaseImages, appId)) { return R.fail("上传图片存在违规信息"); return R.fail(Constants.NOTICE_FAIL, "上传图片存在违规信息"); } } @@ -84,30 +85,37 @@ addNeighborCircleAppDTO.setCommunityId(communityId); } //查询社区自动审核是否开着 String key = NeighborCircleConstants.NEIGHBOR_CIRCLE_AUTO_EXAMINE; R isOk = communityWestService.getSysConfValue(key + communityId, communityId); if (R.isOk(isOk)) { if (isOk.getData() != null) { String value = isOk.getData().toString(); if (value.equals("1")) { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); String msg = addNeighborCircleAppDTO.getReleaseContent(); if (checkService.checkMessage(msg)) { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); if(this.getAppId().equals("wx118de8a734d269f0")){ //花城直接通过 addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); }else { //查询社区自动审核是否开着 String key = NeighborCircleConstants.NEIGHBOR_CIRCLE_AUTO_EXAMINE; R isOk = communityWestService.getSysConfValue(key + communityId, communityId); if (R.isOk(isOk)) { if (isOk.getData() != null) { String value = isOk.getData().toString(); if (value.equals("1")) { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); String msg = addNeighborCircleAppDTO.getReleaseContent(); if (StrUtil.isEmpty(checkService.checkMessageBy(msg,this.getLoginUserInfo().getOpenid(),this.getAppId()))) { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.yes); } else { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.no); } } else { addNeighborCircleAppDTO.setWxExamineResult(AddComActNeighborCircleAppDTO.isExamine.no); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } } else { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); communityWestService.addSysConfValue(key + communityId, communityId, "社区邻里圈自动审核参数", "1"); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); } } else { communityWestService.addSysConfValue(key + communityId, communityId, "社区邻里圈自动审核参数", "1"); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.no); addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } } else { addNeighborCircleAppDTO.setIsExamine(AddComActNeighborCircleAppDTO.isExamine.yes); } return communityWestService.addNeighborByApp(addNeighborCircleAppDTO); } @@ -179,7 +187,7 @@ if (StrUtil.isNotBlank(content)) { String result = checkService.checkMessageBy(content, openid, appId); if (StrUtil.isNotBlank(result)) { return R.fail("填写内容存在 " + result + " 违规信息"); return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } return communityWestService.neighborCommentByApp(commentAppDTO); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/PartyBuildingApi.java
@@ -4,6 +4,8 @@ import javax.annotation.Resource; import cn.hutool.core.util.StrUtil; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.interfaces.OperLog; import com.panzhihua.common.model.dtos.common.PageComPbCheckUnitDto; import com.panzhihua.common.model.dtos.community.PageMemberForInviteDTO; @@ -207,8 +209,11 @@ public R addActivityinfo(@RequestBody @Validated(AddGroup.class) ComPbActivityDTO comPbActivityDTO) { // 微信内容审核 String msg = comPbActivityDTO.getRichText(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long userId = loginUserInfo.getUserId(); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/PartyBuildingWestApi.java
@@ -4,6 +4,8 @@ import javax.annotation.Resource; import cn.hutool.core.util.StrUtil; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.interfaces.OperLog; import com.panzhihua.common.model.dtos.common.PageComPbCheckUnitDto; import com.panzhihua.common.model.vos.common.ComPbCheckUnitVo; @@ -199,8 +201,11 @@ public R addActivityinfo(@RequestBody @Validated(AddGroup.class) ComPbActivityDTO comPbActivityDTO) { // 微信内容审核 String msg = comPbActivityDTO.getRichText(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long userId = loginUserInfo.getUserId(); springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java
@@ -9,7 +9,9 @@ import javax.annotation.Resource; import javax.validation.Valid; import cn.hutool.core.util.StrUtil; import com.panzhihua.applets.umf.UmfPayUtil; import com.panzhihua.common.constants.Constants; import com.panzhihua.common.constants.HttpStatus; import com.panzhihua.common.model.dtos.community.social.PageProjectDTO; import com.panzhihua.common.model.vos.community.rentHouse.WxPayOrderVO; @@ -397,8 +399,11 @@ public R addFeedback(@RequestBody @Validated(AddGroup.class) SysUserFeedbackDTO sysUserFeedbackDTO) { // 微信内容审核 String msg = sysUserFeedbackDTO.getContent(); if (!checkService.checkMessage(msg)) { return R.fail("内容违规"); if (StrUtil.isNotBlank(msg)) { String result = checkService.checkMessageBy(msg, this.getLoginUserInfo().getOpenid(),this.getAppId()); if (StrUtil.isNotBlank(result)) { return R.fail(Constants.NOTICE_FAIL, "填写内容存在 " + result + " 违规信息"); } } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long userId = loginUserInfo.getUserId(); springcloud_k8s_panzhihuazhihuishequ/common/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/constants/Constants.java
@@ -37,6 +37,11 @@ public static final Integer FAIL = 500; /** * 失败标记-微信提示违规记录消息状态码 */ public static final Integer NOTICE_FAIL = 501; /** * 登录成功 */ public static final String LOGIN_SUCCESS = "Success"; springcloud_k8s_panzhihuazhihuishequ/grid_app/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ springcloud_k8s_panzhihuazhihuishequ/grid_backstage/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ springcloud_k8s_panzhihuazhihuishequ/service_api/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActNeighborCircleWestServiceImpl.java
@@ -161,6 +161,10 @@ neighborCircleDO.setRefuseReason("内容违规"); } } if(addNeighborCircleAppDTO.getIsExamine().equals(AddComActNeighborCircleAppDTO.isExamine.no) && addNeighborCircleAppDTO.getWxExamineResult().equals(AddComActNeighborCircleAppDTO.isExamine.yes)){ neighborCircleDO.setStatus(ComActNeighborCircleWestDO.status.xs); } if(this.baseMapper.insert(neighborCircleDO) > 0){ return R.ok(); springcloud_k8s_panzhihuazhihuishequ/service_grid/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/ springcloud_k8s_panzhihuazhihuishequ/service_property/.gitignore
New file @@ -0,0 +1,33 @@ HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /.nb-gradle/ build/ !**/src/main/**/build/ !**/src/test/**/build/ ### VS Code ### .vscode/