1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package api.service;
|
| import api.bean.PhotovoltaicEntity;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.github.pagehelper.PageInfo;
|
| /**
| * (PhotovoltaicEntity)表服务接口
| *
| * @author makejava
| * @since 2022-09-28 17:35:51
| */
| public interface PhotovoltaicEntityService extends IService<PhotovoltaicEntity> {
|
| PageInfo<PhotovoltaicEntity> list(Integer page, Integer limit, String key, Long userId);
|
| }
|
|