yangys
2025-11-05 10c5247722995e571b3fd4dbffb178964a9bd6ee
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.qianwen.smartman.modules.notify.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import com.qianwen.smartman.modules.notify.entity.Notice;
import com.qianwen.smartman.modules.notify.vo.NoticeSelectVO;
import com.qianwen.smartman.modules.notify.vo.NoticeVO;
 
 
public interface NoticeMapper extends BaseMapper<Notice> {
    IPage<NoticeVO> selectNoticePage(IPage<NoticeVO> page, @Param("notice") NoticeSelectVO notice);
}