feat:查询保密法

pg_adapter
wangxy 9 months ago
parent 54e1698286
commit 5d00634717

@ -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
* @return
*/
public int deleteNoticeByIds(String ids);
public SysNotice selectList();
}

@ -79,4 +79,15 @@ public class SysNoticeServiceImpl implements ISysNoticeService
{
return noticeMapper.deleteNoticeByIds(Convert.toStrArray(ids));
}
/**
*
*
* @return
*/
@Override
public SysNotice selectList()
{
return noticeMapper.selectList().get(0);
}
}

@ -82,4 +82,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</foreach>
</delete>
<select id="selectList" parameterType="SysNotice" resultMap="SysNoticeResult">
<include refid="selectNoticeVo"/>
where notice_type='3'
</select>
</mapper>
Loading…
Cancel
Save