From c0a6471efcf392e54aeefe318a27d5da78220fd7 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 19 八月 2024 16:32:51 +0800 Subject: [PATCH] 人脸指标计算测试+修改 --- ycl-server/src/main/resources/mapper/zgyw/PlatformOnlineMapper.xml | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/PlatformOnlineMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/PlatformOnlineMapper.xml index 94c67ad..ef4cec1 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/PlatformOnlineMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/PlatformOnlineMapper.xml @@ -12,12 +12,6 @@ <result column="create_time" property="createTime" /> </resultMap> - - - - - - <select id="getById" resultMap="BaseResultMap"> SELECT TPO.platform_name, @@ -52,4 +46,9 @@ </if> </select> + + <select id="yesterdayData" resultMap="BaseResultMap"> + select * from t_platform_online + where create_date between #{startDate} and #{endDate} + </select> </mapper> -- Gitblit v1.8.0