springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComSanShuoEventController.java
@@ -19,6 +19,8 @@ import javax.validation.Valid; import java.util.HashMap; import static java.util.Objects.nonNull; /** * ClassName ComEventController * Description 三说会堂事件表控制层 @@ -86,6 +88,9 @@ log.info("================appId="+comEventPageRequestVO); ComEventVO comEventVO = CopyUtil.copyProperties(comEventPageRequestVO, ComEventVO.class); comEventPageRequestVO.setCreateBy(getUserId()); if (nonNull(comEventPageRequestVO.getAppId())){ comEventVO.setAppId(comEventPageRequestVO.getAppId()); } return comEventService.page(comEventVO, comEventVO.getPageNo(), comEventVO.getPageSize()); } springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/sanshuo/ComEventVO.java
@@ -156,6 +156,14 @@ private Integer usertype; private String appId; public String getAppId() { return appId; } public void setAppId(String appId) { this.appId = appId; } public static long getSerialVersionUID() { return serialVersionUID; } springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/java/com/panzhihua/community_backstage/api/ComPropertyRepairApi.java
@@ -51,6 +51,16 @@ } /** * 分页查询所有物业公司报事报修 * @return 所有数据 */ @ApiOperation(value = "后台列表接口",response = ComPropertyRepairVO.class) @PostMapping("/queryAllProperty") public R selectAllProperty(@RequestBody CommonPage commonPage) { return this.propertyService.comPropertyRepairSelectAll(commonPage); } /** * 后台添加报修 * @param comPropertyRepairVO * @return springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComEventServiceImpl.java
@@ -657,6 +657,9 @@ } public void sendMessage(Long expertId,ComEvent comEvent){ if (nonNull(comEvent.getRequestUserCommunity()) && comEvent.getRequestUserCommunity().equals(10172)){ return; } //获取专家的openId ComSanshuoExpert expert = comSanShuoExpertService.getById(expertId); SysUser sysUser = sysUserDao.selectOne(new QueryWrapper<SysUser>().lambda().eq(SysUser::getPhone, expert.getPhone()).eq(SysUser::getType, 1).eq(SysUser::getAppId,"wx0cef797390444b75" )); springcloud_k8s_panzhihuazhihuishequ/service_property/src/main/java/com/panzhihua/service_property/api/ComPropertyRepairApi.java
@@ -38,10 +38,6 @@ */ @PostMapping("queryAll") public R selectAll(@RequestBody CommonPage commonPage) { log.info("===================参数+"+commonPage); if (nonNull(commonPage.getPropertyCheck()) && commonPage.getPropertyCheck()==1 && nonNull(commonPage.getPropertyId())){ return this.comPropertyRepairService.pageListProperty(commonPage); } return this.comPropertyRepairService.pageList(commonPage); }