You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
699 B
25 lines
699 B
alter table project_correlation
|
|
add isanchor boolean;
|
|
|
|
comment on column project_correlation.isanchor is '是否续签';
|
|
|
|
alter table project_correlation
|
|
add sendorders character varying[];
|
|
|
|
comment on column project_correlation.sendorders is '自动派单';
|
|
|
|
alter table project_correlation
|
|
add percentage int;
|
|
|
|
comment on column project_correlation.percentage is '项目中断百分比';
|
|
|
|
alter table project_correlation
|
|
add struc_id integer[];
|
|
|
|
comment on column project_correlation.struc_id is '选中作为选择重点测点的结构物';
|
|
|
|
alter table project_correlation
|
|
add struc_sensor jsonb;
|
|
|
|
comment on column project_correlation.struc_sensor is '选中对应结构的重点测点';
|
|
|
|
|