| | |
| | | create table t_mm_item_result_json |
| | | ( |
| | | id varchar(36) not null, |
| | | outputid varchar(36), |
| | | outputid varchar(50), |
| | | predicttime datetime, |
| | | jsonvalue text, |
| | | cumulant varchar(36), |
| | |
| | | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='电价时段配置数据'; |
| | | |
| | | |
| | | alter table t_mm_predict_item add column `iscumulant` tinyint default false COMMENT '是否累计'; |
| | | alter table t_mm_predict_item add column `cumuldivisor` int default 60 COMMENT '累计除数'; |
| | | alter table t_mm_predict_item add column `cumulpoint` varchar(36) DEFAULT NULL, COMMENT '累计测点'; |
| | | alter table t_mm_item_output add column `iscumulant` tinyint default false COMMENT '是否累计'; |
| | | alter table t_mm_item_output add column `cumuldivisor` int DEFAULT NULL COMMENT '累计除数'; |
| | | alter table t_mm_item_output add column `cumulpoint` varchar(36) DEFAULT NULL, COMMENT '累计测点'; |