生产任务去掉客户必填,库存订单可能无客户。

This commit is contained in:
DESKTOP-J7ED0MB\yinjinlu 2022-10-09 10:56:51 +08:00
parent fadf20a126
commit e9e6402524

View File

@ -251,9 +251,9 @@ create table pro_task (
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 '客户编码',
client_name varchar(255) not null comment '客户名称',
client_id bigint(20) comment '客户ID',
client_code varchar(64) comment '客户编码',
client_name varchar(255) comment '客户名称',
client_nick varchar(255) comment '客户简称',
start_time datetime default CURRENT_TIMESTAMP comment '开始生产时间',
duration int(11) default 1 comment '生产时长',