| | |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 服务实现类 |
| | | * |
| | |
| | | public class InformationServiceImpl extends ServiceImpl<InformationMapper, Information> implements IInformationService { |
| | | |
| | | @Override |
| | | public IPage<InformationVO> selectInformationPage(IPage<InformationVO> page, InformationVO information) { |
| | | public IPage<Information> selectInformationPage(IPage<Information> page, Information information) { |
| | | return page.setRecords(baseMapper.selectInformationPage(page, information)); |
| | | } |
| | | |
| | |
| | | baseMapper.deleteMe(creditcode); |
| | | } |
| | | |
| | | @Override |
| | | public Map selectCount(String departmentid) { |
| | | return baseMapper.selectCount(departmentid); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<Object, String>> selectInCount() { |
| | | return baseMapper.selectInCount(); |
| | | } |
| | | |
| | | } |