1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package api.dao;
|
| import api.bean.HuinengMachineError;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.util.List;
|
| /**
| * (HuinengMachineError)表数据库访问层
| *
| * @author makejava
| * @since 2022-10-22 17:52:05
| */
| @Mapper
| public interface HuinengMachineErrorDao extends BaseMapper<HuinengMachineError> {
|
|
|
| List<HuinengMachineError> findAllBySort(int page, int size, String field, String sort);
|
| List<HuinengMachineError> findByCompanyBySort(int page, int size, Long userId, Object o, String field, String sort);
|
| List<HuinengMachineError> findByPhotovoltaicId(Integer photovoltaicId);
| }
|
|