质量待检任务。

This commit is contained in:
yinjinlu-pc\尹金路
2023-10-20 09:31:02 +08:00
parent 01fd608843
commit d987d92183
4 changed files with 70 additions and 1 deletions

View File

@@ -139,6 +139,10 @@ create table qc_iqc (
iqc_code varchar(64) not null comment '来料检验单编号',
iqc_name varchar(500) not null comment '来料检验单名称',
template_id bigint(20) not null comment '检验模板ID',
source_doc_id bigint(20) comment '来源单据ID',
source_doc_type varchar(64) comment '来源单据类型',
source_doc_code varchar(64) comment '来源单据编号',
source_line_id bigint(20) comment '来源单据行ID',
vendor_id bigint(20) not null comment '供应商ID',
vendor_code varchar(64) not null comment '供应商编码',
vendor_name varchar(255) not null comment '供应商名称',
@@ -253,7 +257,10 @@ create table qc_ipqc (
ipqc_name varchar(255) comment '检验单名称',
ipqc_type varchar(64) not null comment '检验类型',
template_id bigint(20) not null comment '检验模板ID',
source_doc_id bigint(20) comment '来源单据ID',
source_doc_type varchar(64) comment '来源单据类型',
source_doc_code varchar(64) comment '来源单据编号',
source_line_id bigint(20) comment '来源单据行ID',
workorder_id bigint(20) not null comment '工单ID',
workorder_code varchar(64) comment '工单编码',
workorder_name varchar(255) comment '工单名称',
@@ -343,6 +350,10 @@ create table qc_oqc (
oqc_code varchar(64) not null comment '出货检验单编号',
oqc_name varchar(500) comment '出货检验单名称',
template_id bigint(20) not null comment '检验模板ID',
source_doc_id bigint(20) comment '来源单据ID',
source_doc_type varchar(64) comment '来源单据类型',
source_doc_code varchar(64) comment '来源单据编号',
source_line_id bigint(20) comment '来源单据行ID',
client_id bigint(20) not null comment '客户ID',
client_code varchar(64) not null comment '客户编码',
client_name varchar(255) not null comment '客户名称',