liyong
3 天以前 876d72a43b52fd4de8c37196d4f8dfd92bab4b7e
1
2
3
4
5
6
7
8
9
10
11
12
13
# 工序
drop table if exists product_process;
create table product_process
(
    id          bigint auto_increment
        primary key,
    create_time datetime null comment '录入时间',
    update_time datetime null comment '更新时间',
    name        varchar(255) not null default '' comment '工艺名称',
    no          varchar(255) not null default '' comment '工艺编号',
    remark      varchar(255) not null default '' comment '备注',
    tenant_id   bigint       not null default 0 comment '租户id'
);