<?xml version="1.0" encoding="UTF-8"?>
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.qianwen.mdc.collect.mapper.iotdb.AggregateStateMapper">
|
|
<resultMap id="BaseResultMap" type="com.qianwen.mdc.collect.entity.iotdb.AggregateState">
|
<result column="workstation_id" jdbcType="BIGINT" property="workstationId"/>
|
<result column="end_time" jdbcType="BIGINT" property="endTime"/>
|
<result column="duration_collect" jdbcType="BIGINT" property="durationCollect"/>
|
|
<result column="value_collect" jdbcType="BIGINT" property="valueCollect"/>
|
|
<result column="calendar_code" jdbcType="VARCHAR" property="calendarCode"/>
|
|
<result column="factory_year" jdbcType="INTEGER" property="factoryYear"/>
|
<result column="factory_month" jdbcType="INTEGER" property="factoryMonth"/>
|
<result column="factory_week" jdbcType="INTEGER" property="factoryWeek"/>
|
<result column="factory_date" jdbcType="INTEGER" property="factoryDate"/>
|
<result column="shift_index" jdbcType="INTEGER" property="shiftIndex"/>
|
<result column="shift_time_type" jdbcType="INTEGER" property="shiftTimeType"/>
|
<result column="wcs" jdbcType="INTEGER" property="wcs"/>
|
<result column="rps" jdbcType="INTEGER" property="rps"/>
|
<result column="feedback_id" jdbcType="BIGINT" property="feedbackId"/>
|
<result column="is_deleted" jdbcType="BOOLEAN" property="isDeleted"/>
|
<result column="is_plan" jdbcType="BIGINT" property="isPlan"/>
|
|
<result column="employee_id" jdbcType="BIGINT" property="employeeId"/>
|
</resultMap>
|
|
<sql id="all_columns">
|
workstation_id,end_time,duration_collect,value_collect,calendar_code,factory_year,factory_month,factory_date,factory_week,shift_index,shift_time_type,wcs,rps,is_fix_point,is_sync,is_plan,feedback_point_type,feedback_id,is_deleted,employee_id
|
</sql>
|
|
<select id="aggregateStatesInTimeRange" resultMap="BaseResultMap">
|
select <include refid="all_columns" /> FROM root.f2.aggregate_state_${workstationId}
|
<where>
|
is_deleted=false
|
<if test="timeRange.startTime != null">
|
AND time >= #{timeRange.startTime}
|
</if>
|
AND time <= #{timeRange.endTime}
|
</where>
|
|
order by time asc
|
align by device
|
</select>
|
|
|
</mapper>
|