chenhj
7 小时以前 e7fec9ecae7757284d676f41b2fe1b32943c0f25
1
2
3
4
5
6
7
8
9
10
11
# 工艺路线项目
drop table if exists process_route_item;
create table process_route_item
(
    id          bigint auto_increment primary key,
    route_id    bigint   not null default 0 comment '工艺路线id',
    product_id  bigint   not null default 0 comment '产品id',
    tenant_id   bigint   not null comment '租户id',
    create_time datetime null comment '录入时间',
    update_time datetime null comment '更新时间'
);