Commit b7dcf522 by 徐高华

test

parent 7bd0e2a4
...@@ -341,7 +341,7 @@ public class MessageApiServiceImpl implements MessageApiService { ...@@ -341,7 +341,7 @@ public class MessageApiServiceImpl implements MessageApiService {
List<StaffClerkRelationDTO> staffClerkRelationDTOS = staffClerkRelationApiService.listByStaffId(wxEnterpriseId, staffId); List<StaffClerkRelationDTO> staffClerkRelationDTOS = staffClerkRelationApiService.listByStaffId(wxEnterpriseId, staffId);
if (CollectionUtils.isNotEmpty(staffClerkRelationDTOS)) { if (CollectionUtils.isNotEmpty(staffClerkRelationDTOS)) {
for (StaffClerkRelationDTO staffClerkRelationDTO : staffClerkRelationDTOS) { for (StaffClerkRelationDTO staffClerkRelationDTO : staffClerkRelationDTOS) {
staffClerkRelationApiService.unbindByStaffAndClerkId(staffId, staffClerkRelationDTO.getClerkId(), ChannelCodeEnum.ADMIN_UNBIND.getCode()); staffClerkRelationApiService.unbindByStaffAndClerkId(staffId, staffClerkRelationDTO.getClerkId(), ChannelCodeEnum.WEIXIN_DEL.getCode());
} }
} }
} }
......
...@@ -104,7 +104,6 @@ public class UploadController extends WebBaseController { ...@@ -104,7 +104,6 @@ public class UploadController extends WebBaseController {
if (uploadInfo != null) { if (uploadInfo != null) {
map.put("qcloudImageUrl", uploadInfo.getOrgFileUrl()); map.put("qcloudImageUrl", uploadInfo.getOrgFileUrl());
map.put("imageFiledCode", "imageFiledCode"); map.put("imageFiledCode", "imageFiledCode");
logger.info(uploadInfo instanceof ImageCloudFileInfo);
if(uploadInfo instanceof ImageCloudFileInfo) { if(uploadInfo instanceof ImageCloudFileInfo) {
ImageCloudFileInfo info = (ImageCloudFileInfo) uploadInfo ; ImageCloudFileInfo info = (ImageCloudFileInfo) uploadInfo ;
map.put("compressFileUrl", info.getCompressFileUrl()); map.put("compressFileUrl", info.getCompressFileUrl());
......
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