|
@@ -78,7 +78,8 @@ const menu = {
|
|
|
task_group_option: 'Task Group Option',
|
|
|
task_group_queue: 'Task Group Queue',
|
|
|
data_quality: 'Data Quality',
|
|
|
- task_result: 'Task Result'
|
|
|
+ task_result: 'Task Result',
|
|
|
+ rule: 'Rule management'
|
|
|
}
|
|
|
|
|
|
const home = {
|
|
@@ -771,6 +772,70 @@ const data_quality = {
|
|
|
expected_and_actual: 'Expected - Actual',
|
|
|
actual_and_expected: 'Actual - Expected',
|
|
|
actual_or_expected: 'Actual / Expected x 100%'
|
|
|
+ },
|
|
|
+ rule: {
|
|
|
+ actions: 'Actions',
|
|
|
+ name: 'Rule Name',
|
|
|
+ type: 'Rule Type',
|
|
|
+ username: 'User Name',
|
|
|
+ create_time: 'Create Time',
|
|
|
+ update_time: 'Update Time',
|
|
|
+ input_item: 'Rule input item',
|
|
|
+ view_input_item: 'View input items',
|
|
|
+ input_item_title: 'Input item title',
|
|
|
+ input_item_placeholder: 'Input item placeholder',
|
|
|
+ input_item_type: 'Input item type',
|
|
|
+ src_connector_type: 'SrcConnType',
|
|
|
+ src_datasource_id: 'SrcSource',
|
|
|
+ src_table: 'SrcTable',
|
|
|
+ src_filter: 'SrcFilter',
|
|
|
+ src_field: 'SrcField',
|
|
|
+ statistics_name: 'ActualValName',
|
|
|
+ check_type: 'CheckType',
|
|
|
+ operator: 'Operator',
|
|
|
+ threshold: 'Threshold',
|
|
|
+ failure_strategy: 'FailureStrategy',
|
|
|
+ target_connector_type: 'TargetConnType',
|
|
|
+ target_datasource_id: 'TargetSourceId',
|
|
|
+ target_table: 'TargetTable',
|
|
|
+ target_filter: 'TargetFilter',
|
|
|
+ mapping_columns: 'OnClause',
|
|
|
+ statistics_execute_sql: 'ActualValExecSql',
|
|
|
+ comparison_name: 'ExceptedValName',
|
|
|
+ comparison_execute_sql: 'ExceptedValExecSql',
|
|
|
+ comparison_type: 'ExceptedValType',
|
|
|
+ writer_connector_type: 'WriterConnType',
|
|
|
+ writer_datasource_id: 'WriterSourceId',
|
|
|
+ target_field: 'TargetField',
|
|
|
+ field_length: 'FieldLength',
|
|
|
+ logic_operator: 'LogicOperator',
|
|
|
+ regexp_pattern: 'RegexpPattern',
|
|
|
+ deadline: 'Deadline',
|
|
|
+ datetime_format: 'DatetimeFormat',
|
|
|
+ enum_list: 'EnumList',
|
|
|
+ begin_time: 'BeginTime',
|
|
|
+ fix_value: 'FixValue',
|
|
|
+ null_check: 'NullCheck',
|
|
|
+ custom_sql: 'Custom Sql',
|
|
|
+ single_table: 'Single Table',
|
|
|
+ single_table_custom_sql: 'Single Table Custom Sql',
|
|
|
+ multi_table_accuracy: 'Multi Table Accuracy',
|
|
|
+ multi_table_value_comparison: 'Multi Table Compare',
|
|
|
+ field_length_check: 'FieldLengthCheck',
|
|
|
+ uniqueness_check: 'UniquenessCheck',
|
|
|
+ regexp_check: 'RegexpCheck',
|
|
|
+ timeliness_check: 'TimelinessCheck',
|
|
|
+ enumeration_check: 'EnumerationCheck',
|
|
|
+ table_count_check: 'TableCountCheck',
|
|
|
+ All: 'All',
|
|
|
+ FixValue: 'FixValue',
|
|
|
+ DailyFluctuation: 'DailyFluctuation',
|
|
|
+ WeeklyFluctuation: 'WeeklyFluctuation',
|
|
|
+ MonthlyFluctuation: 'MonthlyFluctuation',
|
|
|
+ Last7DayFluctuation: 'Last7DayFluctuation',
|
|
|
+ Last30DayFluctuation: 'Last30DayFluctuation',
|
|
|
+ SrcTableTotalRows: 'SrcTableTotalRows',
|
|
|
+ TargetTableTotalRows: 'TargetTableTotalRows'
|
|
|
}
|
|
|
}
|
|
|
|