工序管理

This commit is contained in:
2026-05-14 16:21:41 +08:00
parent 210f3614ea
commit 7b573cebdd
15 changed files with 829 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
-- 仅建表 Flyway V3.9.2_53 表结构一致建表+菜单+授权请执行 mes-process-operation-menu-permission.sql
SET NAMES utf8mb4;
CREATE TABLE IF NOT EXISTS `mes_process_operation` (
`id` varchar(32) NOT NULL COMMENT '主键',
`operation_code` varchar(64) NOT NULL COMMENT '工序编码',
`operation_name` varchar(128) NOT NULL COMMENT '工序名称',
`remark` varchar(500) DEFAULT NULL COMMENT '备注',
`tenant_id` int DEFAULT NULL COMMENT '租户',
`sys_org_code` varchar(64) DEFAULT NULL COMMENT '部门',
`create_by` varchar(32) DEFAULT NULL COMMENT '创建人',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`update_by` varchar(32) DEFAULT NULL COMMENT '更新人',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
`del_flag` int DEFAULT '0' COMMENT '删除标记0正常1删除',
PRIMARY KEY (`id`),
KEY `idx_mpo_operation_code` (`operation_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='MES工序管理';