1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.sandu.ximon.dao.mapper;
|
| import com.sandu.ximon.dao.domain.Pole;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
|
| import java.util.List;
|
| /**
| * @Entity com.sandu.ximon.dao.domain.Pole
| */
| @Mapper
| public interface PoleMapper extends BaseMapper<Pole> {
|
|
| boolean updateDeviceCode(Long id);
|
| List<Pole> queryPoleOnLineStatesList(Long userid, Integer isTrue, Integer bingStates, Long groupid, String keyword, String orderBy);
| }
|
|