feat(图表): [数据填报]对于批量导入的操作在日志中只记录一次

#15352
This commit is contained in:
ulleo
2025-04-03 14:41:49 +08:00
committed by Junjun
parent 416b765c60
commit 1b92df09e2
4 changed files with 8 additions and 0 deletions

View File

@@ -4386,6 +4386,8 @@ export default {
download: 'Download',
download_template: 'Download template',
insert_data: 'Insert data',
batch_insert_data: ' Batch insert data',
batch_insert_data_with_count: 'Batch insert datatotal count: {0}',
update_data: 'Update data',
delete_data: 'Delete data',
recent_committer: 'Recent committer',

View File

@@ -4267,6 +4267,8 @@ export default {
download: '下載',
download_template: '下載模板',
insert_data: '插入資料',
batch_insert_data: '批量導入',
batch_insert_data_with_count: '批量導入,共{0}條數據',
update_data: '更新資料',
delete_data: '刪除資料',
recent_committer: '最近提交人',

View File

@@ -4268,6 +4268,8 @@ export default {
download: '下载',
download_template: '下载模板',
insert_data: '插入数据',
batch_insert_data: '批量导入',
batch_insert_data_with_count: '批量导入,共{0}条数据',
update_data: '更新数据',
delete_data: '删除数据',
recent_committer: '最近提交人',

View File

@@ -34,4 +34,6 @@ public class DfCommitLog implements Serializable {
private String committer;
private Long commitTime;
private Integer count;
}