局长信箱-后台服务
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.
 
 
 
 

9 lines
668 B

ALTER TABLE "mailbox"."mail_return"
ADD COLUMN "sign_flag" bool DEFAULT true;
COMMENT ON COLUMN "mailbox"."mail_return"."sign_flag" IS '是否是签收退回';
update mail_return set sign_flag = true where handler_name is null;
update mail_return set sign_flag = false where handler_name is not null;
INSERT INTO "mailbox"."menu"("id", "pid", "menu_type", "menu_name", "menu_icon", "menu_sort", "perms", "paths", "component", "selected", "params", "is_cache", "is_show", "is_disable", "create_time", "update_time") VALUES (813, 500, 'C', '操作手册', NULL, 0, NULL, 'operatingManual', 'setting/OperatingManual', NULL, NULL, 0, 1, 0, 1710472924, 1710473042);