| | |
| | | package com.sandu.ximon.dao.mapper; |
| | | |
| | | import com.sandu.common.domain.BaseMapper; |
| | | import com.sandu.ximon.dao.bo.MonitorBo; |
| | | import com.sandu.ximon.dao.domain.Monitor; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | |
| | | public interface MonitorMapper extends BaseMapper<Monitor> { |
| | | List<Monitor> listMonitorByKeyword(String keyword, int equipmentState1, int equipmentState2, |
| | | int bindingState1, int bindingState2); |
| | | |
| | | List<Monitor> listMonitorByKeyword1(String keyword, int bindingState1, int bindingState2); |
| | | |
| | | |
| | | List<MonitorBo> listMonitorByIds(String keyword, Long clientId, int bindingState); |
| | | } |
| | | |
| | | |
| | | |
| | | |