| | |
| | | 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; |
| | | |
| | |
| | | |
| | | @Mapper |
| | | public interface MonitorMapper extends BaseMapper<Monitor> { |
| | | List<Monitor> listMonitorByKeyword(String keyword, String equipmentState1, String equipmentState2, |
| | | String bindingState1, String bindingState2); |
| | | |
| | | List<MonitorBo> listMonitorByIds(List<String> list, int equipmentState); |
| | | |
| | | List<MonitorBo> listMonitorDeviceSerial1(Long userid, String keyword, int bindingState, String orderBy); |
| | | |
| | | List<MonitorBo> newListMonitorOnBind(Long userid, String keyword); |
| | | } |
| | | |
| | | |
| | | |
| | | |