mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
52 lines
1.9 KiB
TypeScript
52 lines
1.9 KiB
TypeScript
import { EnumValue } from '@/common/Enum';
|
|
|
|
export const DbGetDbNamesMode = {
|
|
Auto: EnumValue.of(-1, '实时获取').setTagType('warning'),
|
|
Assign: EnumValue.of(1, '指定库名').setTagType('primary'),
|
|
};
|
|
|
|
// 数据库sql执行类型
|
|
export const DbSqlExecTypeEnum = {
|
|
Update: EnumValue.of(1, 'UPDATE').setTagColor('#E4F5EB'),
|
|
Delete: EnumValue.of(2, 'DELETE').setTagColor('#F9E2AE'),
|
|
Insert: EnumValue.of(3, 'INSERT').setTagColor('#A8DEE0'),
|
|
Query: EnumValue.of(4, 'QUERY').setTagColor('#A8DEE0'),
|
|
Ddl: EnumValue.of(5, 'DDL').setTagColor('#F9E2AE'),
|
|
Other: EnumValue.of(-1, 'OTHER').setTagColor('#F9E2AE'),
|
|
};
|
|
|
|
export const DbSqlExecStatusEnum = {
|
|
Success: EnumValue.of(2, '成功').setTagType('success'),
|
|
Fail: EnumValue.of(-2, '失败').setTagType('danger'),
|
|
};
|
|
|
|
export const DbDataSyncRecentStateEnum = {
|
|
Success: EnumValue.of(1, '成功').setTagType('success'),
|
|
Fail: EnumValue.of(-1, '失败').setTagType('danger'),
|
|
};
|
|
|
|
export const DbDataSyncLogStatusEnum = {
|
|
Success: EnumValue.of(1, '成功').setTagType('success'),
|
|
Wait: EnumValue.of(2, '同步中').setTagType('primary'),
|
|
Fail: EnumValue.of(-1, '失败').setTagType('danger'),
|
|
};
|
|
|
|
export const DbDataSyncRunningStateEnum = {
|
|
Success: EnumValue.of(1, '运行中').setTagType('success'),
|
|
Wait: EnumValue.of(2, '待运行').setTagType('primary'),
|
|
Fail: EnumValue.of(3, '已停止').setTagType('danger'),
|
|
};
|
|
|
|
export const DbTransferRunningStateEnum = {
|
|
Success: EnumValue.of(2, '成功').setTagType('success'),
|
|
Wait: EnumValue.of(1, '执行中').setTagType('primary'),
|
|
Fail: EnumValue.of(-1, '失败').setTagType('danger'),
|
|
Stop: EnumValue.of(-2, '手动终止').setTagType('warning'),
|
|
};
|
|
|
|
export const DbTransferFileStatusEnum = {
|
|
Running: EnumValue.of(1, '执行中').setTagType('primary'),
|
|
Success: EnumValue.of(2, '成功').setTagType('success'),
|
|
Fail: EnumValue.of(-1, '失败').setTagType('danger'),
|
|
};
|