Van333
2022-12-29 d8f66b834134f6b755fd3fb93bb91b56f9d31f6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package api.service;
 
import api.bean.Pages;
import api.bean.PhotovoltaicError;
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
 
/**
 * (PhotovoltaicError)表服务接口
 *
 * @author makejava
 * @since 2022-09-30 11:53:07
 */
public interface PhotovoltaicErrorService extends IService<PhotovoltaicError> {
 
 
 
    PageInfo<PhotovoltaicError> list(Pages pages, Long userId);
}