From 3dadd51018b621bbb5b3abcde94df6d8fa9fbf6b Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期三, 23 八月 2023 14:36:34 +0800 Subject: [PATCH] 重构minio工具类 配置文件区分生产环境和开发环境 --- src/main/resources/mapper/ArdCamerasMapper.xml | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/ArdCamerasMapper.xml b/src/main/resources/mapper/ArdCamerasMapper.xml index 5f5e419..2ecf053 100644 --- a/src/main/resources/mapper/ArdCamerasMapper.xml +++ b/src/main/resources/mapper/ArdCamerasMapper.xml @@ -32,6 +32,7 @@ <result property="operatorExpired" column="operator_expired"/> <result property="camMaxVisibleDistance" column="cam_max_visible_distance"/> <result property="camAlarmGuideEnable" column="cam_alarm_guide_enable"/> + <result property="updateTime" column="update_time"/> </resultMap> <sql id="selectArdCamerasVo"> @@ -60,7 +61,8 @@ c.operator_id, c.operator_expired, c.cam_max_visible_distance, - c.cam_alarm_guide_enable + c.cam_alarm_guide_enable, + c.update_time from ard_cameras c </sql> -- Gitblit v1.9.3