buhuazhen
8 天以前 39e0b35d9e6d4c54d4b9b773f2370cd0e94e54aa
doc/create_table_product_structure.sql
@@ -4,7 +4,7 @@
(
    id                 bigint auto_increment
        primary key,
    product_id         bigint         not null comment '产品id',
    product_model_id         bigint         not null comment '产品id',
    process_id         bigint         not null comment '工序id',
    unit_quantity      numeric(16, 4) not null comment '单位产出需要数量',
    demanded_quantity  numeric(16, 4) not null comment '需求数量',
@@ -12,3 +12,5 @@
    disk_quantity      numeric(16, 4) not null comment '盘数量',
    tenant_id          bigint         not null comment '租户id'
);
alter table product_structure
    add parent_id bigint null comment '父id';