| | |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.common.core.domain.entity.Custom; |
| | | import com.ruoyi.common.utils.QueryWrappers; |
| | | import com.ruoyi.system.mapper.CustomMapper; |
| | | import com.ruoyi.system.service.CustomService; |
| | | import lombok.AllArgsConstructor; |
| | |
| | | private CustomMapper customMapper; |
| | | |
| | | @Override |
| | | public Map<String, Object> selectCustomPageList(IPage<Custom> page, Custom custom) { |
| | | |
| | | return null; |
| | | public IPage<Custom> selectCustomPageList(IPage<Custom> page, Custom custom) { |
| | | return customMapper.selectCustomPageList(page, QueryWrappers.queryWrappers(custom)); |
| | | } |
| | | |
| | | @Override |