feat:瀚高适配

hangao
wangxy 5 months ago
parent e37a29de0f
commit f6adaa3c4d

@ -48,7 +48,7 @@ public interface SysNoticeMapper
* @param noticeIds ID * @param noticeIds ID
* @return * @return
*/ */
public int deleteNoticeByIds(String[] noticeIds); public int deleteNoticeByIds(Long[] noticeIds);
/** /**

@ -77,7 +77,7 @@ public class SysNoticeServiceImpl implements ISysNoticeService
@Override @Override
public int deleteNoticeByIds(String ids) public int deleteNoticeByIds(String ids)
{ {
return noticeMapper.deleteNoticeByIds(Convert.toStrArray(ids)); return noticeMapper.deleteNoticeByIds(Convert.toLongArray(ids));
} }
/** /**

@ -75,7 +75,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where notice_id = #{noticeId} where notice_id = #{noticeId}
</update> </update>
<delete id="deleteNoticeByIds" parameterType="String"> <delete id="deleteNoticeByIds" parameterType="Long">
delete from sys_notice where notice_id in delete from sys_notice where notice_id in
<foreach item="noticeId" collection="array" open="(" separator="," close=")"> <foreach item="noticeId" collection="array" open="(" separator="," close=")">
#{noticeId} #{noticeId}

Loading…
Cancel
Save