|
@@ -3,8 +3,7 @@ package com.usky.system.service.impl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
-import com.google.gson.JsonObject;
|
|
|
-import com.usky.common.core.bean.ApiResult;
|
|
|
+import com.usky.common.core.exception.BusinessException;
|
|
|
import com.usky.common.mybatis.core.AbstractCrudService;
|
|
|
import com.usky.system.domain.SysNotice;
|
|
|
import com.usky.system.domain.SysUser;
|
|
@@ -15,11 +14,8 @@ import com.usky.system.service.MceReceiveService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.sql.Wrapper;
|
|
|
import java.util.Arrays;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -76,19 +72,34 @@ public class SysNoticeServiceImpl extends AbstractCrudService<SysNoticeMapper, S
|
|
|
List<Long> usersIds = sysUserMapper.selectList(Wrappers.lambdaQuery(SysUser.class).select(SysUser::getUserId).in(SysUser::getDeptId, deptIds)).stream().map(SysUser::getUserId).collect(Collectors.toList());
|
|
|
|
|
|
if (!deptIds.isEmpty()) {
|
|
|
- JSONObject jsonObject = new JSONObject();
|
|
|
- jsonObject.put("infoTitle", notice.getNoticeTitle());
|
|
|
- jsonObject.put("infoContent", notice.getNoticeContent());
|
|
|
- jsonObject.put("infoType", 1);
|
|
|
- jsonObject.put("id", insertId);
|
|
|
- jsonObject.put("infoTypeName", "通知公告");
|
|
|
- jsonObject.put("userName", notice.getCreateBy());
|
|
|
- jsonObject.put("userIds", usersIds);
|
|
|
- mceReceiveService.add(jsonObject.toString());
|
|
|
+ sendNotice(notice.getNoticeTitle(), insertId, notice.getCreateBy(), usersIds);
|
|
|
}
|
|
|
+
|
|
|
return insertId;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 发送消息
|
|
|
+ * @param infoContent 消息内容
|
|
|
+ * @param id 通知公告id
|
|
|
+ * @param userName 发布人
|
|
|
+ * @param userIds 接收人
|
|
|
+ */
|
|
|
+ private void sendNotice(String infoContent, Integer id, String userName, List<Long> userIds) {
|
|
|
+ JSONObject jsonObject = new JSONObject();
|
|
|
+ jsonObject.put("infoTitle", "通知公告");
|
|
|
+ jsonObject.put("infoContent", infoContent);
|
|
|
+ jsonObject.put("infoType", 1);
|
|
|
+ jsonObject.put("id", id);
|
|
|
+ jsonObject.put("userName", userName);
|
|
|
+ jsonObject.put("userIds", userIds);
|
|
|
+ try {
|
|
|
+ mceReceiveService.add(jsonObject.toString());
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error(String.format("公告:%d,消息发送失败:%s", id, e.getMessage()));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 修改公告
|
|
|
*
|