| 123456789 |
- ALTER TABLE `message_template_event_group`
- ADD COLUMN `app_id` BIGINT(20) NULL
- COMMENT '所属应用 ID,对应 sys_app.id'
- AFTER `template_service_name`;
- -- arg_template_json
- ALTER TABLE `message_template_event_group`
- ADD COLUMN `arg_template_json` TEXT NULL
- COMMENT '模板变量 JSON,结构:[{"propertyName":"显示名","propertyKey":"${fieldName}$"}]'
- AFTER `notice_app_code`;
|