1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
alter table ic_form_item_group add COLUMN POLICY_FLAG VARCHAR(1) DEFAULT '0' |
|||
COMMENT '政策人员信息组件;1:展示;0:不展示;默认0' AFTER DISPLAY; |
|||
|
|||
|
|||
alter table ic_form_item add COLUMN POLICY_FLAG VARCHAR(1) DEFAULT '0' |
|||
COMMENT '政策人员信息组件;1:展示;0:不展示;默认0' AFTER MULTI_SELECT; |
|||
|
|||
update ic_form_item_group set POLICY_FLAG='1' |
|||
where DEL_FLAG='0' |
|||
and LABEL not like '%需求信息%'; |
|||
|
|||
update ic_form_item i set i.POLICY_FLAG='1' |
|||
where i.DEL_FLAG='0' |
|||
and i.DYNAMIC='1' |
|||
and i.COLUMN_NAME is not null |
|||
and i.COLUMN_NAME !='' |
|||
and i.ITEM_TYPE not in('cascader') |
|||
and label not in ('分割线'); |
Loading…
Reference in new issue