From b2b9931f33dcd81cc2d1ef4d6d60873aadc8c585 Mon Sep 17 00:00:00 2001
From: liuhaonan <konodioda2333@vip.qq.com>
Date: 星期三, 15 十二月 2021 15:02:21 +0800
Subject: [PATCH] 细节调整

---
 dao/src/main/resources/mapper/PlayPlanMapper.xml |   17 ++++++++++-------
 1 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/dao/src/main/resources/mapper/PlayPlanMapper.xml b/dao/src/main/resources/mapper/PlayPlanMapper.xml
index ea16b2f..e3c48a7 100644
--- a/dao/src/main/resources/mapper/PlayPlanMapper.xml
+++ b/dao/src/main/resources/mapper/PlayPlanMapper.xml
@@ -10,19 +10,22 @@
             <result property="name" column="name" jdbcType="VARCHAR"/>
             <result property="ledProgramId" column="led_program_id" jdbcType="BIGINT"/>
             <result property="ledProgramName" column="led_program_name" jdbcType="VARCHAR"/>
-            <result property="volume" column="volume" jdbcType="DOUBLE"/>
+            <result property="volume" column="volume" jdbcType="VARCHAR"/>
             <result property="applySeries" column="apply_series" jdbcType="INTEGER"/>
-            <result property="onDateRange" column="on_date_range" jdbcType="TIMESTAMP"/>
-            <result property="offDateRange" column="off-date_range" jdbcType="TIMESTAMP"/>
+            <result property="onDateRange" column="on_date_range" jdbcType="VARCHAR"/>
+            <result property="offDateRange" column="off_date_range" jdbcType="VARCHAR"/>
             <result property="weekRange" column="week_range" typeHandler="com.sandu.common.mybatis.JsonStringArrayTypeHandler"/>
-            <result property="onTime" column="on_time" jdbcType="TIMESTAMP"/>
-            <result property="offTime" column="off_time" jdbcType="TIMESTAMP"/>
+            <result property="onTime" column="on_time" jdbcType="VARCHAR"/>
+            <result property="offTime" column="off_time" jdbcType="VARCHAR"/>
+            <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
+            <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
     </resultMap>
 
     <sql id="Base_Column_List">
         id,user_id,name,
         led_program_id,led_program_name,volume,
-        apply_series,date_range,week_range,
-        on_time,off_time
+        apply_series,on_date_range,off_date_range,
+        week_range,on_time,off_time,
+        create_time,update_time
     </sql>
 </mapper>

--
Gitblit v1.9.3