| | |
| | | |
| | | <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.AirData"> |
| | | <id property="id" column="id" jdbcType="BIGINT"/> |
| | | <result property="belongTo" column="belong_to" jdbcType="VARCHAR"/> |
| | | <result property="deviceMac" column="device_mac" jdbcType="VARCHAR"/> |
| | | <result property="deviceType" column="device_type" jdbcType="VARCHAR"/> |
| | | <result property="moduleWarmUpStatusFlag" column="module_warm_up_status_flag" jdbcType="VARCHAR"/> |
| | | <result property="temperature" column="temperature" jdbcType="DOUBLE"/> |
| | | <result property="humidity" column="humidity" jdbcType="DOUBLE"/> |
| | | <result property="windSpeed" column="wind_speed" jdbcType="DOUBLE"/> |
| | | <result property="windDirection" column="wind_direction" jdbcType="DOUBLE"/> |
| | | <result property="pressure" column="pressure" jdbcType="INTEGER"/> |
| | | <result property="lightIntensity" column="light_intensity" jdbcType="INTEGER"/> |
| | | <result property="noise" column="noise" jdbcType="INTEGER"/> |
| | | <result property="pm25" column="pm25" jdbcType="INTEGER"/> |
| | | <result property="pm10" column="pm10" jdbcType="INTEGER"/> |
| | | <result property="tsp" column="tsp" jdbcType="INTEGER"/> |
| | | <result property="so2" column="so2" jdbcType="INTEGER"/> |
| | | <result property="ech2o" column="ech2o" jdbcType="INTEGER"/> |
| | | <result property="no2" column="no2" jdbcType="INTEGER"/> |
| | | <result property="tvoc" column="tvoc" jdbcType="INTEGER"/> |
| | | <result property="co" column="co" jdbcType="INTEGER"/> |
| | | <result property="co2" column="co2" jdbcType="INTEGER"/> |
| | | <result property="o3" column="o3" jdbcType="INTEGER"/> |
| | | <result property="fluoride" column="fluoride" jdbcType="INTEGER"/> |
| | | <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/> |
| | | <result property="temperature" column="temperature" jdbcType="VARCHAR"/> |
| | | <result property="humidity" column="humidity" jdbcType="VARCHAR"/> |
| | | <result property="PM25" column="p_m25" jdbcType="VARCHAR"/> |
| | | <result property="brightness" column="brightness" jdbcType="INTEGER"/> |
| | | <result property="PM10" column="p_m10" jdbcType="VARCHAR"/> |
| | | <result property="formaldehyde" column="formaldehyde" jdbcType="VARCHAR"/> |
| | | <result property="CO2" column="c_o2" jdbcType="VARCHAR"/> |
| | | <result property="tVoc" column="t_voc" jdbcType="INTEGER"/> |
| | | <result property="windSpeed" column="wind_speed" jdbcType="VARCHAR"/> |
| | | <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> |
| | | </resultMap> |
| | | |
| | | <select id="listAirEquipmentMAC" resultType="java.lang.String"> |
| | | SELECT DISTINCT |
| | | device_mac |
| | | FROM |
| | | air_data |
| | | </select> |
| | | |
| | | </mapper> |