tangzy
2021-07-14 5fb38e71cc5ab8eee8e7f489c4476d59104f07df
src/main/java/org/springblade/modules/information/service/impl/InformationServiceImpl.java
@@ -24,6 +24,9 @@
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
import java.util.Map;
/**
 *  服务实现类
 *
@@ -34,7 +37,7 @@
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));
   }
@@ -53,4 +56,14 @@
      baseMapper.deleteMe(creditcode);
   }
   @Override
   public Map selectCount(String departmentid) {
      return baseMapper.selectCount(departmentid);
   }
   @Override
   public List<Map<Object, String>> selectInCount() {
      return baseMapper.selectInCount();
   }
}