@ -110,4 +110,12 @@ public class SysNoticeController extends BaseController
{
return toAjax(noticeService.deleteNoticeByIds(ids));
}
@GetMapping ("/getNotice")
@ResponseBody
public AjaxResult getNotice()
return AjaxResult.success(noticeService.selectList());
@ -49,4 +49,12 @@ public interface SysNoticeMapper
* @return 结果
*/
public int deleteNoticeByIds(String[] noticeIds);
/**
* 查询公告列表
*
* @return 公告集合
public List<SysNotice> selectList();
@ -49,4 +49,7 @@ public interface ISysNoticeService
public int deleteNoticeByIds(String ids);
public SysNotice selectList();
@ -79,4 +79,15 @@ public class SysNoticeServiceImpl implements ISysNoticeService
return noticeMapper.deleteNoticeByIds(Convert.toStrArray(ids));
@Override
public SysNotice selectList()
return noticeMapper.selectList().get(0);
@ -81,5 +81,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{noticeId}
</foreach>
</delete>
<select id="selectList" parameterType="SysNotice" resultMap="SysNoticeResult">
<include refid="selectNoticeVo"/>
where notice_type='3'
</select>
</mapper>