From 8db779331bf6cdeacaa95d61ac1c38cc3635791c Mon Sep 17 00:00:00 2001
From: Administrator <1525436766@qq.com>
Date: 星期二, 17 八月 2021 17:05:23 +0800
Subject: [PATCH] .67 edit at date 2021-08-17 	1.db_battinf.tb_battinf表新增视频链接地址字段'video_url'

---
 BattMonitor_DB_Builder/src/com/dev/fbs9100/FBS9100_Task_Thread_SQL.java |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/BattMonitor_DB_Builder/src/com/dev/fbs9100/FBS9100_Task_Thread_SQL.java b/BattMonitor_DB_Builder/src/com/dev/fbs9100/FBS9100_Task_Thread_SQL.java
index c7e71d4..8e45bb1 100644
--- a/BattMonitor_DB_Builder/src/com/dev/fbs9100/FBS9100_Task_Thread_SQL.java
+++ b/BattMonitor_DB_Builder/src/com/dev/fbs9100/FBS9100_Task_Thread_SQL.java
@@ -318,22 +318,22 @@
 					+ "`MonomerTmp_High` FLOAT NOT NULL DEFAULT 0, "
 					+ "`AutoTestStartVol`  float NOT NULL DEFAULT 0, "				//起始电压
 					+ "`MonCount` int(11) NOT NULL DEFAULT '0' COMMENT '每组单体数'," 
-					+ "`MonVol` float(11,0) NOT NULL DEFAULT '0' COMMENT '单体电压'," 
-					+ "`DisPower` float(11,0) NOT NULL DEFAULT '0' COMMENT '预放功率(0.1kw)'," 
+					+ "`MonVol` float NOT NULL DEFAULT '0' COMMENT '单体电压'," 
+					+ "`DisPower` float NOT NULL DEFAULT '0' COMMENT '预放功率(0.1kw)'," 
 					+ "`DisPreRes` float(11,0) NOT NULL DEFAULT '0' COMMENT '放电阻值(mΩ)   '," 
 					+ "`CharCap` int(11) NOT NULL DEFAULT '0' COMMENT '充电容量(AH)'," 
 					+ "`CharTimeLong` int(11) NOT NULL DEFAULT '0' COMMENT '充电时长(min)'," 
 					+ "`FloatCharTimeLong` int(11) NOT NULL DEFAULT '0' COMMENT '浮充时长'," 
-					+ "`CharSotpCurr` float(11,0) NOT NULL DEFAULT '0' COMMENT '截止电流(0.1A)    ',"  
-					+ "`MonVolHightLimit` float(11,0) NOT NULL DEFAULT '0' COMMENT '单体上限(0.01V)',"  
+					+ "`CharSotpCurr` float NOT NULL DEFAULT '0' COMMENT '截止电流(0.1A)    ',"  
+					+ "`MonVolHightLimit` float NOT NULL DEFAULT '0' COMMENT '单体上限(0.01V)',"  
 					+ "`MonVolHightLimitCount` int(11) NOT NULL DEFAULT '0' COMMENT '单体上限数量',"  
 					+ "`CharHighTmp` int(11) NOT NULL DEFAULT '0' COMMENT '充电过温'," 
 					+ "`DisWaitTime` int(11) NOT NULL DEFAULT '0' COMMENT '放完静置(0-500分钟)',"  
 					+ "`CharWaitTime` int(11) NOT NULL DEFAULT '0' COMMENT '充完静置(0-500分钟)',"
 					+ "`FlowOver_Count` int(11) NOT NULL DEFAULT '1' COMMENT '恒流总阶段数[1-3]',"  
-					+ "`FlowOver_CharCurr_1` float(11,0) NOT NULL DEFAULT '0' COMMENT '恒流1阶段充电电流',"  
-					+ "`FlowOver_CharCurr_2` float(11,0) NOT NULL DEFAULT '0' COMMENT '恒流2阶段充电电流',"  
-					+ "`FlowOver_CharCurr_3` float(11,0) NOT NULL DEFAULT '0' COMMENT '恒流3阶段充电电流',"  
+					+ "`FlowOver_CharCurr_1` float NOT NULL DEFAULT '0' COMMENT '恒流1阶段充电电流',"  
+					+ "`FlowOver_CharCurr_2` float NOT NULL DEFAULT '0' COMMENT '恒流2阶段充电电流',"  
+					+ "`FlowOver_CharCurr_3` float NOT NULL DEFAULT '0' COMMENT '恒流3阶段充电电流',"  
 					+ "`FlowOver_CharTime_1` int(11) NOT NULL DEFAULT '0' COMMENT '恒流1阶段充电时长'," 
 					+ "`FlowOver_CharTime_2` int(11) NOT NULL DEFAULT '0' COMMENT '恒流2阶段充电时长',"  
 					+ "`FlowOver_CharTime_3` int(11) NOT NULL DEFAULT '0' COMMENT '恒流3阶段充电时长',"			
@@ -470,7 +470,7 @@
 					+ " AND column_name='MonVol'");
 			if(false == res.next()) {
 				sql.sqlMysqlExecute("ALTER TABLE " + Sql_Mysql.FBS9100SetParam_Table 
-								+ " ADD COLUMN `MonVol` float(11,0) NOT NULL DEFAULT '0' COMMENT '单体电压';");
+								+ " ADD COLUMN `MonVol` float NOT NULL DEFAULT '0' COMMENT '单体电压';");
 			}
 			
 			//添加指定的DisPower列(预放功率(0.1kw))
@@ -569,7 +569,7 @@
 					+ " AND column_name='CharHighTmp'");
 			if(res.next()) {
 				sql.sqlMysqlExecute("ALTER TABLE " + Sql_Mysql.FBS9100SetParam_Table 
-								+ " modify  column `CharHighTmp` float(11,0) NOT NULL DEFAULT '0' COMMENT '充电过温';");
+								+ " modify  column `CharHighTmp` float(11,0) NOT NULL DEFAULT '45' COMMENT '充电过温';");
 			}
 			
 			//添加指定的DisWaitTime列(放完静置(0-500分钟))

--
Gitblit v1.9.1