From c0d88c1f82394c0374d2d592f4d2bca951d6334e Mon Sep 17 00:00:00 2001 From: xufenglei <xufenglei> Date: Mon, 14 May 2018 15:58:07 +0800 Subject: [PATCH] 报表展示 增加行业筛选 --- src/main/java/com/moral/mapper/DeviceMapper.java | 22 +++++++++++++++++----- 1 files changed, 17 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/moral/mapper/DeviceMapper.java b/src/main/java/com/moral/mapper/DeviceMapper.java index ee2a7f9..bf67ff6 100644 --- a/src/main/java/com/moral/mapper/DeviceMapper.java +++ b/src/main/java/com/moral/mapper/DeviceMapper.java @@ -1,19 +1,31 @@ package com.moral.mapper; +import java.util.Date; import java.util.List; import java.util.Map; -import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.moral.common.mapper.BaseMapper; import com.moral.entity.Device; -import com.moral.entity.DeviceExample; +import tk.mybatis.mapper.entity.Example; -@Mapper -public interface DeviceMapper extends BaseMapper<Device, DeviceExample, Integer>{ +public interface DeviceMapper extends BaseMapper<Device>{ List<Map<String, Object>> getDeviceStatesByAccount(Map<String, Object> parameters); - + List<Device> selectWithRelationData(Example example); List<Map<String, Object>> getSensorsByDevice(@Param("mac")String mac); + List<String> getDeviceMacByMonitorPointAndDeviceVersion(@Param("monitorPointId")Integer monitorPointId,@Param("deviceVersionId")Integer deviceVersionId); + + List<Map<String, Object>> getDeviceVersionIdByMonitorPoint(Integer monitorPointId); + + List<Device> selectByOrgIdAndDevName(@Param("orgId")Integer orgId,@Param("devName")String devName); + List<Device> selectByOrgIdAndMpId(@Param("orgId")Integer orgId,@Param("mpId")Integer mpId); + List<Device> selectByMap(Map<String, Object> params); + Device selectWithOrgIdsByMac(String mac); + List<Integer> getDeviceVersionIdByAreaCode(Map<String, Object> parameters); + Integer getDeviceCountByRegion(Map<String, Object> parameters); + List<Map> countByTimes(@Param("start")Date start,@Param("end")Date end,@Param("format")String format); + + List<Device> getDevicesByProfession(Map<String, Object> parameters); } \ No newline at end of file -- Gitblit v1.8.0