hyingbo
2025-06-04 4601316438d6cce2c8bbd6bd4a20de2378da6b21
lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/system/controller/SysAnnouncementSendController.java
@@ -8,8 +8,11 @@
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import io.swagger.annotations.ApiOperation;
import org.apache.commons.compress.utils.Lists;
import org.apache.shiro.SecurityUtils;
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.constant.CommonConstant;
import org.jeecg.common.constant.DataBaseConstant;
import org.jeecg.common.constant.WebsocketConst;
@@ -20,6 +23,7 @@
import org.jeecg.modules.system.entity.*;
import org.jeecg.modules.system.model.AnnouncementSendModel;
import org.jeecg.modules.system.service.*;
import org.jeecg.modules.system.vo.OptionsVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
@@ -244,6 +248,18 @@
   }
   /**
    * @功能:获取消息类型下拉
    * @return
    */
   @AutoLog(value = "获取消息类型下拉")
   @ApiOperation(value = "获取消息类型下拉", notes = "获取消息类型下拉")
   @GetMapping(value = "/getMessageType")
   public Result<List<OptionsVo>> getMessageType() {
      List<OptionsVo> result = sysAnnouncementSendService.getMessageType();
      return Result.OK(result);
   }
   /**
    * @功能:一键已读
    * @return
    */