| | |
| | | id bigint auto_increment primary key, |
| | | route_id bigint not null default 0 comment '工艺路线id', |
| | | product_model_id bigint not null default 0 comment '产品id', |
| | | product_model_ids varchar(1024) null comment '多产品id,逗号分隔', |
| | | drag_sort bigint not null default 0 comment '拖拽排序', |
| | | process_id bigint not null default 0 comment '工序id', |
| | | is_quality tinyint not null default 0 comment '是否质检 0 不是 1 是', |
| | | tenant_id bigint not null comment '租户id', |
| | | create_time datetime null comment '录入时间', |
| | | update_time datetime null comment '更新时间' |
| | |
| | | ); |
| | | |
| | | alter table product_process |
| | | add salary_quota numeric(16,3) null comment '工资定额'; |
| | | add salary_quota numeric(16,3) null comment '工资定额'; |