初始代码

This commit is contained in:
hhh
2026-04-02 10:38:23 +08:00
parent d8b4140f50
commit aed67ce1fd
1937 changed files with 447678 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
-- =============================================
-- 功能: 支持手动修改设备OEE
-- 版本: v1.6.020
-- 作者: 周启威
-- 日期: 2026-01-20
-- =============================================
-- 在device表添加手动OEE相关字段
ALTER TABLE `device` ADD COLUMN `manual_oee` DECIMAL(5,2) DEFAULT NULL COMMENT '手动设置的OEE值(百分比)';
ALTER TABLE `device` ADD COLUMN `use_manual_oee` TINYINT(1) DEFAULT 0 COMMENT '是否使用手动OEE(0=否,使用系统计算; 1=是,使用手动值)';