diff --git a/haiwei-admin/src/main/java/com/haiwei/RuoYiApplication.java b/haiwei-admin/src/main/java/com/haiwei/RuoYiApplication.java index 294881e..d901e19 100644 --- a/haiwei-admin/src/main/java/com/haiwei/RuoYiApplication.java +++ b/haiwei-admin/src/main/java/com/haiwei/RuoYiApplication.java @@ -16,15 +16,6 @@ public class RuoYiApplication { // System.setProperty("spring.devtools.restart.enabled", "false"); SpringApplication.run(RuoYiApplication.class, args); - System.out.println("(♥◠‿◠)ノ゙ 若依启动成功 ლ(´ڡ`ლ)゙ \n" + - " .-------. ____ __ \n" + - " | _ _ \\ \\ \\ / / \n" + - " | ( ' ) | \\ _. / ' \n" + - " |(_ o _) / _( )_ .' \n" + - " | (_,_).' __ ___(_ o _)' \n" + - " | |\\ \\ | || |(_,_)' \n" + - " | | \\ `' /| `-' / \n" + - " | | \\ / \\ / \n" + - " ''-' `'-' `-..-' "); + System.out.println("启动成功") ; } } \ No newline at end of file diff --git a/haiwei-admin/src/main/resources/application-druid.yml b/haiwei-admin/src/main/resources/application-druid.yml index b4ed3f5..0215a90 100644 --- a/haiwei-admin/src/main/resources/application-druid.yml +++ b/haiwei-admin/src/main/resources/application-druid.yml @@ -9,7 +9,6 @@ spring: url: jdbc:sqlserver://175.27.215.92:1433;SelectMethod=cursor;DatabaseName=Hsdb # url: jdbc:sqlserver://localhost:1433;SelectMethod=cursor;DatabaseName=Hsdb username: sa -# password: haiwei@123 # password: sa password: Hawei@123 # 从库数据源 diff --git a/haiwei-admin/src/main/resources/banner.txt b/haiwei-admin/src/main/resources/banner.txt index 0931cb8..fee1ce3 100644 --- a/haiwei-admin/src/main/resources/banner.txt +++ b/haiwei-admin/src/main/resources/banner.txt @@ -1,24 +1,2 @@ Application Version: ${ruoyi.version} -Spring Boot Version: ${spring-boot.version} -//////////////////////////////////////////////////////////////////// -// _ooOoo_ // -// o8888888o // -// 88" . "88 // -// (| ^_^ |) // -// O\ = /O // -// ____/`---'\____ // -// .' \\| |// `. // -// / \\||| : |||// \ // -// / _||||| -:- |||||- \ // -// | | \\\ - /// | | // -// | \_| ''\---/'' | | // -// \ .-\__ `-` ___/-. / // -// ___`. .' /--.--\ `. . ___ // -// ."" '< `.___\_<|>_/___.' >'"". // -// | | : `- \`.;`\ _ /`;.`/ - ` : | | // -// \ \ `-. \_ __\ /__ _/ .-` / / // -// ========`-.____`-.___\_____/___.-`____.-'======== // -// `=---=' // -// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // -// 佛祖保佑 永不宕机 永无BUG // -//////////////////////////////////////////////////////////////////// \ No newline at end of file +Spring Boot Version: ${spring-boot.version} \ No newline at end of file diff --git a/haiwei-manage/src/main/resources/mapper/manage/ApiMapper.xml b/haiwei-manage/src/main/resources/mapper/manage/ApiMapper.xml index 5d48fde..3a40baa 100644 --- a/haiwei-manage/src/main/resources/mapper/manage/ApiMapper.xml +++ b/haiwei-manage/src/main/resources/mapper/manage/ApiMapper.xml @@ -7,7 +7,7 @@ + ) a PIVOT (max(data) FOR pointname IN ( 一体机B转速, 一体机B电流, 一体机B切刀转速, 一体机B切刀电流, 一体机B机头温度, 一体机B机头压力 )) t - - + 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 + + + + ed.CreateTime between #{beginTime} and #{endTime} + + + ) a PIVOT (max(data) FOR pointname IN ( 一体机A转速, 一体机A电流, 一体机A切刀转速, 一体机A切刀电流, 一体机A机头温度, 一体机A机头压力 )) t + + ) + SELECT * + FROM CTE + WHERE row_num % #{timeInterval} = 0 + ORDER BY row_num; +