修改 历史数据查询时间条件

master
wangh 9 months ago
parent bbd9c1efa3
commit 90c28dd7e9

@ -16,15 +16,6 @@ public class RuoYiApplication
{ {
// System.setProperty("spring.devtools.restart.enabled", "false"); // System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(RuoYiApplication.class, args); SpringApplication.run(RuoYiApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 若依启动成功 ლ(´ڡ`ლ)゙ \n" + System.out.println("启动成功") ;
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
} }
} }

@ -9,7 +9,6 @@ spring:
url: jdbc:sqlserver://175.27.215.92:1433;SelectMethod=cursor;DatabaseName=Hsdb url: jdbc:sqlserver://175.27.215.92:1433;SelectMethod=cursor;DatabaseName=Hsdb
# url: jdbc:sqlserver://localhost:1433;SelectMethod=cursor;DatabaseName=Hsdb # url: jdbc:sqlserver://localhost:1433;SelectMethod=cursor;DatabaseName=Hsdb
username: sa username: sa
# password: haiwei@123
# password: sa # password: sa
password: Hawei@123 password: Hawei@123
# 从库数据源 # 从库数据源

@ -1,24 +1,2 @@
Application Version: ${ruoyi.version} Application Version: ${ruoyi.version}
Spring Boot Version: ${spring-boot.version} Spring Boot Version: ${spring-boot.version}
////////////////////////////////////////////////////////////////////
// _ooOoo_ //
// o8888888o //
// 88" . "88 //
// (| ^_^ |) //
// O\ = /O //
// ____/`---'\____ //
// .' \\| |// `. //
// / \\||| : |||// \ //
// / _||||| -:- |||||- \ //
// | | \\\ - /// | | //
// | \_| ''\---/'' | | //
// \ .-\__ `-` ___/-. / //
// ___`. .' /--.--\ `. . ___ //
// ."" '< `.___\_<|>_/___.' >'"". //
// | | : `- \`.;`\ _ /`;.`/ - ` : | | //
// \ \ `-. \_ __\ /__ _/ .-` / / //
// ========`-.____`-.___\_____/___.-`____.-'======== //
// `=---=' //
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
// 佛祖保佑 永不宕机 永无BUG //
////////////////////////////////////////////////////////////////////

@ -7,7 +7,7 @@
<select id="queryPram" resultType="com.haiwei.manage.domain.ParamVo"> <select id="queryPram" resultType="com.haiwei.manage.domain.ParamVo">
SELECT order_by, SELECT order_by,
ee.point_name as name, ee.point_name as name,
location_x, location_x,
location_y, location_y,
info.PointName as pointname, info.PointName as pointname,
@ -20,7 +20,8 @@
) ld on ld.PID = ed.PID and ld.LatestTime = CreateTime ) ld on ld.PID = ed.PID and ld.LatestTime = CreateTime
right join EPointsInfo info on ed.PID = info.ID right join EPointsInfo info on ed.PID = info.ID
left join base_point_info ee on ee.objid = info.EID left join base_point_info ee on ee.objid = info.EID
where ee.device_name = #{deviceName} order by order_by where ee.device_name = #{deviceName}
order by order_by
</select> </select>
<select id="queryDeviceState" resultType="com.haiwei.manage.domain.DeviceState"> <select id="queryDeviceState" resultType="com.haiwei.manage.domain.DeviceState">
select case select case
@ -32,7 +33,7 @@
else '停机' else '停机'
end end
end as state, end as state,
'一体机' as name '一体机' as name
from EEquipmentState from EEquipmentState
where ID = #{param2} where ID = #{param2}
union union
@ -45,79 +46,88 @@
else '停机' else '停机'
end end
end as state, end as state,
'切刀' as name '切刀' as name
from EEquipmentState from EEquipmentState
where ID = #{param4} where ID = #{param4}
</select> </select>
<select id="queryPramList" resultType="com.haiwei.manage.domain.RecordRaramData"> <select id="queryPramList" resultType="com.haiwei.manage.domain.RecordRaramData">
select * select *
from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120) time from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120)
time
FROM EPointData ed FROM EPointData ed
right join EPointsInfo info on ed.PID = info.ID right join EPointsInfo info on ed.PID = info.ID
left join base_point_info ee on ee.objid = info.EID left join base_point_info ee on ee.objid = info.EID
where info.Status = 1) a PIVOT (max(data) FOR pointname IN ( 一体机A转速, 一体机A电流, 一体机A切刀转速, 一体机A切刀电流, 一体机A机头温度, 一体机A机头压力 )) t
<where> <where>
<if test="beginTime !=null and endTime !=null"> <if test="beginTime !=null and endTime !=null">
time between #{beginTime} and #{endTime} ed.CreateTime between #{beginTime} and #{endTime}
</if> </if>
</where> </where>
) a PIVOT (max(data) FOR pointname IN ( 一体机A转速, 一体机A电流, 一体机A切刀转速, 一体机A切刀电流, 一体机A机头温度, 一体机A机头压力 )) t
</select> </select>
<select id="queryPramList_B" resultType="com.haiwei.manage.domain.RecordRaramDataB"> <select id="queryPramList_B" resultType="com.haiwei.manage.domain.RecordRaramDataB">
select * select *
from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120) time from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120)
time
FROM EPointData ed FROM EPointData ed
right join EPointsInfo info on ed.PID = info.ID right join EPointsInfo info on ed.PID = info.ID
left join base_point_info ee on ee.objid = info.EID left join base_point_info ee on ee.objid = info.EID
where info.Status = 1) a PIVOT (max(data) FOR pointname IN ( 一体机B转速, 一体机B电流, 一体机B切刀转速, 一体机B切刀电流, 一体机B机头温度, 一体机B机头压力 )) t
<where> <where>
<if test="beginTime !=null and endTime !=null"> <if test="beginTime !=null and endTime !=null">
time between #{beginTime} and #{endTime} ed.CreateTime between #{beginTime} and #{endTime}
</if> </if>
</where> </where>
</select> ) a PIVOT (max(data) FOR pointname IN ( 一体机B转速, 一体机B电流, 一体机B切刀转速, 一体机B切刀电流, 一体机B机头温度, 一体机B机头压力 )) t
<select id="queryParamData" resultType="com.haiwei.manage.domain.RecordRaramData">
WITH CTE AS (
SELECT ROW_NUMBER() OVER (ORDER BY time) AS row_num,*
from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120) time
FROM EPointData ed
right join EPointsInfo info on ed.PID = info.ID
left join base_point_info ee on ee.objid = info.EID
where info.Status = 1) a PIVOT (max(data) FOR pointname IN ( 一体机A转速, 一体机A电流, 一体机A切刀转速, 一体机A切刀电流, 一体机A机头温度, 一体机A机头压力 )) t
<where>
<if test="beginTime !=null and endTime !=null">
time between #{beginTime} and #{endTime}
</if>
</where>
)
SELECT *
FROM CTE
WHERE row_num % #{timeInterval} = 0
ORDER BY row_num;
</select> </select>
<select id="queryParamData_B" resultType="com.haiwei.manage.domain.RecordRaramDataB"> <select id="queryParamData" resultType="com.haiwei.manage.domain.RecordRaramData">
WITH CTE AS ( WITH CTE AS (
SELECT ROW_NUMBER() OVER (ORDER BY time) AS row_num,* SELECT ROW_NUMBER() OVER (ORDER BY time) AS row_num,*
from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120) time from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120)
FROM EPointData ed time
right join EPointsInfo info on ed.PID = info.ID FROM EPointData ed
left join base_point_info ee on ee.objid = info.EID right join EPointsInfo info on ed.PID = info.ID
where info.Status = 1) a PIVOT (max(data) FOR pointname IN ( 一体机B转速, 一体机B电流, 一体机B切刀转速, 一体机B切刀电流, 一体机B机头温度, 一体机B机头压力 )) t left join base_point_info ee on ee.objid = info.EID
<where>
<if test="beginTime !=null and endTime !=null"> <where>
time between #{beginTime} and #{endTime} <if test="beginTime !=null and endTime !=null">
</if> ed.CreateTime between #{beginTime} and #{endTime}
</where> </if>
) </where>
SELECT * ) a PIVOT (max(data) FOR pointname IN ( 一体机A转速, 一体机A电流, 一体机A切刀转速, 一体机A切刀电流, 一体机A机头温度, 一体机A机头压力 )) t
FROM CTE
WHERE row_num % #{timeInterval} = 0 )
ORDER BY row_num; SELECT *
FROM CTE
WHERE row_num % #{timeInterval} = 0
ORDER BY row_num;
</select> </select>
<select id="queryParamData_B" resultType="com.haiwei.manage.domain.RecordRaramDataB">
WITH CTE AS (
SELECT ROW_NUMBER() OVER (ORDER BY time) AS row_num,*
from (SELECT ee.point_name + info.PointName as pointname, ed.Data as data, CONVERT(varchar, ed.CreateTime, 120)
time
FROM EPointData ed
right join EPointsInfo info on ed.PID = info.ID
left join base_point_info ee on ee.objid = info.EID
<where>
<if test="beginTime !=null and endTime !=null">
ed.CreateTime between #{beginTime} and #{endTime}
</if>
</where>
) a PIVOT (max(data) FOR pointname IN ( 一体机B转速, 一体机B电流, 一体机B切刀转速, 一体机B切刀电流, 一体机B机头温度, 一体机B机头压力 )) t
)
SELECT *
FROM CTE
WHERE row_num % #{timeInterval} = 0
ORDER BY row_num;
</select>
</mapper> </mapper>

Loading…
Cancel
Save