| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.yw.entity.IndParkInfoEntity; |
| | | import org.springblade.modules.yw.excel.IndParkInfoExcel; |
| | | import org.springblade.modules.yw.vo.IndParkInfoVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 园区基本信息表 服务类 |
| | |
| | | */ |
| | | IPage<IndParkInfoVO> selectIndParkInfoPage(IPage<IndParkInfoVO> page, IndParkInfoVO indParkInfo); |
| | | |
| | | /** |
| | | * 导入园区信息 |
| | | * @param data |
| | | * @param isCovered 是否覆盖 |
| | | * @return |
| | | */ |
| | | String importIndParkInfo(List<IndParkInfoExcel> data, boolean isCovered); |
| | | |
| | | /** |
| | | * 园区基本信息查询(包含企业统计信息) |
| | | * @param indParkInfo |
| | | * @return |
| | | */ |
| | | IndParkInfoVO getDetail(IndParkInfoEntity indParkInfo); |
| | | } |