双机架完成全局样式替换,并且完成工艺管理和生产计划管理,以及完成udp电文数据贯通能力

This commit is contained in:
2026-04-28 14:44:13 +08:00
parent 3e0484b55c
commit f1e0303645
20 changed files with 447 additions and 231 deletions

View File

@@ -7,7 +7,7 @@
-- ----------------------------
DROP TABLE IF EXISTS `mill_process_recipe`;
CREATE TABLE `mill_process_recipe` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`recipe_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`recipe_no` varchar(30) NOT NULL COMMENT '方案记录号/方案名称',
`alloy_no` varchar(24) NOT NULL COMMENT '合金号(钢种)',
`pass_count` int(4) NOT NULL DEFAULT 0 COMMENT '道次数量',
@@ -31,7 +31,7 @@ CREATE TABLE `mill_process_recipe` (
-- ----------------------------
DROP TABLE IF EXISTS `mill_process_pass`;
CREATE TABLE `mill_process_pass` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`pass_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`recipe_id` bigint(20) NOT NULL COMMENT '方案ID',
`pass_no` int(4) NOT NULL COMMENT '道次号',
`in_thick` decimal(9,3) NOT NULL DEFAULT 0.000 COMMENT '入口厚度(mm)',
@@ -61,7 +61,7 @@ CREATE TABLE `mill_process_pass` (
-- ----------------------------
DROP TABLE IF EXISTS `mill_production_plan`;
CREATE TABLE `mill_production_plan` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`plan_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`plan_no` varchar(30) NOT NULL COMMENT '计划号',
`mat_seq_no` varchar(3) DEFAULT '' COMMENT 'L3序号',
`unit_code` varchar(4) DEFAULT '' COMMENT '机组代码',