Commit abf8b968 authored by KeYong's avatar KeYong

修改巡检字段初始化太小

parent 2cc9d10c
...@@ -479,7 +479,7 @@ ...@@ -479,7 +479,7 @@
CREATE DEFINER=`root`@`%` PROCEDURE `updatePlanTask`(IN `planTaskId` BIGINT,IN `pointId` BIGINT,IN `planTaskDetailId` BIGINT,IN `executorId` BIGINT) CREATE DEFINER=`root`@`%` PROCEDURE `updatePlanTask`(IN `planTaskId` BIGINT,IN `pointId` BIGINT,IN `planTaskDetailId` BIGINT,IN `executorId` BIGINT)
BEGIN BEGIN
declare num int ; declare num int ;
declare orgCode VARCHAR(50) ; declare orgCode VARCHAR(2000) ;
declare currentTaskNum int ; declare currentTaskNum int ;
declare pointNum int ; declare pointNum int ;
update p_plan_task_detail set is_finish = 1 where id=planTaskDetailId; update p_plan_task_detail set is_finish = 1 where id=planTaskDetailId;
...@@ -505,7 +505,7 @@ ...@@ -505,7 +505,7 @@
<changeSet author="gaodongdong" id="1610421278000-23" runAlways="true"> <changeSet author="gaodongdong" id="1610421278000-23" runAlways="true">
<createProcedure procedureName="planTaskStatistics" > <createProcedure procedureName="planTaskStatistics" >
CREATE DEFINER=`root`@`%` PROCEDURE `planTaskStatistics`(IN `userId` VARCHAR(50) ,IN `currentDate` VARCHAR(40),IN `orgCode` VARCHAR(50)) CREATE DEFINER=`root`@`%` PROCEDURE `planTaskStatistics`(IN `userId` VARCHAR(2000) ,IN `currentDate` VARCHAR(40),IN `orgCode` VARCHAR(2000))
BEGIN BEGIN
declare planTaskNum BIGINT ; declare planTaskNum BIGINT ;
declare planTaskFinishNum BIGINT ; declare planTaskFinishNum BIGINT ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment