package org.springblade.modules.yw.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springblade.modules.yw.entity.IndParkInfoEntity;
|
import org.springblade.modules.yw.vo.IndParkInfoVO;
|
import org.springblade.modules.yw.mapper.IndParkInfoMapper;
|
import org.springblade.modules.yw.service.IIndParkInfoService;
|
import org.springframework.stereotype.Service;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
/**
|
* 园区基本信息表 服务实现类
|
*
|
* @author BladeX
|
* @since 2024-10-28
|
*/
|
@Service
|
public class IndParkInfoServiceImpl extends ServiceImpl<IndParkInfoMapper, IndParkInfoEntity> implements IIndParkInfoService {
|
|
@Override
|
public IPage<IndParkInfoVO> selectIndParkInfoPage(IPage<IndParkInfoVO> page, IndParkInfoVO indParkInfo) {
|
return page.setRecords(baseMapper.selectIndParkInfoPage(page, indParkInfo));
|
}
|
|
}
|