| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.yuanchu.mom.dto.Custom; |
| | | import com.yuanchu.mom.pojo.Custom; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | @Repository |
| | | public interface CustomMapper extends BaseMapper<Custom> { |
| | | |
| | | // IPage<User> selectUserDtoPageList(IPage<UserPageDto> page, QueryWrapper<UserPageDto> ew); |
| | | IPage<Custom> selectCustomPageList(IPage<Custom> page, QueryWrapper<Custom> ew); |
| | | |
| | | int delCustomById(Integer id); |
| | | |
| | | } |