zss
昨天 8fb07ed9d7b9d207eda15fdd5cd3d8e6202c895c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
alter table product_model
    add product_code varchar(255)  null comment '产品编码';
 
alter table process_route
    add process_route_code varchar(255)  null comment '工艺路线编码';
 
alter table procurement_record_storage
    add product_model_id bigint null comment '产品规格id';
alter table procurement_record_out
    add product_model_id bigint null comment '产品规格id';
 
 
alter table quality_inspect
    add product_model_id bigint null comment '产品规格id';