copy from src/main/java/org/springblade/modules/registration/mapper/RegistrationMapper.java
copy to src/main/java/org/springblade/modules/information/mapper/InformationMapper.java
| File was copied from src/main/java/org/springblade/modules/registration/mapper/RegistrationMapper.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.modules.registration.mapper; |
| | | package org.springblade.modules.information.mapper; |
| | | |
| | | import org.springblade.modules.registration.entity.Registration; |
| | | import org.springblade.modules.registration.vo.RegistrationVO; |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.vo.InformationVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import java.util.List; |
| | |
| | | * @author BladeX |
| | | * @since 2021-07-06 |
| | | */ |
| | | public interface RegistrationMapper extends BaseMapper<Registration> { |
| | | public interface InformationMapper extends BaseMapper<Information> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page |
| | | * @param registration |
| | | * @param information |
| | | * @return |
| | | */ |
| | | List<RegistrationVO> selectRegistrationPage(IPage page, RegistrationVO registration); |
| | | List<InformationVO> selectInformationPage(IPage page, InformationVO information); |
| | | |
| | | } |