库存盘点相关代码

This commit is contained in:
yinjinlu-pc\尹金路
2023-08-22 20:22:03 +08:00
parent d09046142a
commit 38c38ec849
3 changed files with 46 additions and 0 deletions

View File

@@ -155,6 +155,7 @@ create table pro_route_process (
default_suf_time int(11) default 0 comment '等待时间',
color_code char(7) default '#00AEF3' comment '甘特图显示颜色',
key_flag varchar(64) default 'N' comment '关键工序',
is_check char(1) default 'N' comment '是否检验',
remark varchar(500) default '' comment '备注',
attr1 varchar(64) default null comment '预留字段1',
attr2 varchar(255) default null comment '预留字段2',
@@ -239,6 +240,8 @@ create table pro_task (
workstation_id bigint(20) not null comment '工作站ID',
workstation_code varchar(64) not null comment '工作站编号',
workstation_name varchar(255) not null comment '工作站名称',
route_id bigint(20) not null comment '工艺ID',
route_code varchar(64) comment '工艺编号',
process_id bigint(20) not null comment '工序ID',
process_code varchar(64) comment '工序编码',
process_name varchar(255) comment '工序名称',
@@ -289,6 +292,8 @@ create table pro_feedback (
workorder_id bigint(20) not null comment '生产工单ID',
workorder_code varchar(64) comment '生产工单编号',
workorder_name varchar(255) comment '生产工单名称',
route_id bigint(20) not null comment '工艺流程ID',
route_code varchar(64) comment '工艺流程编号',
process_id bigint(20) not null comment '工序ID',
process_code varchar(64) comment '工序编码',
process_name varchar(255) comment '工序名称',