feat(X-Pack): [数据填报]发送填报任务支持邮件或企业微信通知

This commit is contained in:
ulleo
2026-06-05 16:36:38 +08:00
committed by ulleo
parent be3bd17d30
commit 9b018ed1bf
5 changed files with 17 additions and 0 deletions

View File

@@ -463,6 +463,7 @@ public class CalciteProvider extends Provider {
conn = driverClass.connect(configuration.getJdbc(), props);
} catch (Exception e) {
e.printStackTrace();
DEException.throwException(e.getMessage());
}
connectionObj.setConnection(conn);

View File

@@ -4580,6 +4580,9 @@ export default {
task_status: 'Task status',
task_progress: 'Finished / Total',
task_name: 'Task name',
msg_title: 'You Have a New Data Reporting Task',
msg_content_1: 'You have a new data reporting task: ',
msg_content_2: ', please complete the reporting promptly',
add_task: 'Add task',
task_remain_time: 'Task validity period',
task_sender: 'Task sender',

View File

@@ -4452,6 +4452,9 @@ export default {
task_status: '任務狀態',
task_progress: '已填報數/總數',
task_name: '任務名稱',
msg_title: '您有一個新的資料填報任務',
msg_content_1: '您有一個新的資料填報任務: ',
msg_content_2: ',請及時完成填報工作',
add_task: '新增任務',
task_remain_time: '任務有效期限',
task_sender: '任務下發人',

View File

@@ -4431,6 +4431,7 @@ export default {
please_select_end_time: '请选择任务结束时间',
end_time_error: '结束时间必须大于当前时间',
distribute_setting: '下发设置',
notification_setting: '通知设置',
task_distribute_setting: '任务下发设置',
receive_object: '接收对象',
receive_fit_column: '接收对象匹配字段',
@@ -4457,6 +4458,9 @@ export default {
task_status: '任务状态',
task_progress: '已填报数/总数',
task_name: '任务名称',
msg_title: '您有一个新的数据填报任务',
msg_content_1: '您有一个新的数据填报任务: ',
msg_content_2: ',请及时完成填报工作',
add_task: '添加任务',
task_remain_time: '任务有效期',
task_sender: '任务下发人',

View File

@@ -27,6 +27,12 @@ public class TaskInfoVO implements Serializable {
private List<Integer> reciFlagList;
private Integer msgType;
private String msgTitle;
private String msgContent;
@JsonSerialize(using = LongArray2StringSerialize.class)
private List<Long> uidList;