触控屏端生产报工,合格品数量和不良品数量更新

This commit is contained in:
JinLu.Yin
2022-07-11 23:02:07 +08:00
parent b0b7c8b645
commit 3f4fbfc1c4
4 changed files with 51 additions and 6 deletions

View File

@@ -218,6 +218,8 @@ create table pro_task (
unit_of_measure varchar(64) not null comment '单位',
quantity double(14,2) default 1 not null comment '排产数量',
quantity_produced double(14,2) default 0 comment '已生产数量',
quantity_quanlify double(14,2) default 0 comment '合格品数量',
quantity_unquanlify double(14,2) default 0 comment '不良品数量',
quantity_changed double(14,2) default 0 comment '调整数量',
client_id bigint(20) not null comment '客户ID',
client_code varchar(64) not null comment '客户编码',
@@ -262,6 +264,7 @@ create table pro_feedback (
quantity_unquanlified double(14,2) comment '不良品数量',
user_name varchar(64) comment '报工用户名',
nick_name varchar(64) comment '昵称',
feedback_channel varchar(64) comment '报工途径',
feedback_time datetime comment '报工时间',
remark varchar(500) default '' comment '备注',
attr1 varchar(64) default null comment '预留字段1',