From 41d140af1136ff0e1114ec2953cdfeecd7819dde Mon Sep 17 00:00:00 2001
From: yhan219 <yhan219@sina.com>
Date: 星期五, 16 六月 2023 23:58:13 +0800
Subject: [PATCH] !12 [需求认领] 对接 powerjob 实现分布式任务调度 集成方式参考框架内 xxl-job * [需求认领] 对接 powerjob 实现分布式任务调度 集成方式参考框架内 xxl-job
---
src/api/system/dict/type/types.ts | 26 +++++++++++++-------------
1 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/api/system/dict/type/types.ts b/src/api/system/dict/type/types.ts
index 67ad07c..9e52ac6 100644
--- a/src/api/system/dict/type/types.ts
+++ b/src/api/system/dict/type/types.ts
@@ -1,21 +1,21 @@
export interface DictTypeVO extends BaseEntity {
- dictId: number | string;
- dictName: string;
- dictType: string;
- status: string;
- remark: string;
+ dictId: number | string;
+ dictName: string;
+ dictType: string;
+ status: string;
+ remark: string;
}
export interface DictTypeForm {
- dictId: number | string | undefined;
- dictName: string;
- dictType: string;
- status: string;
- remark: string;
+ dictId: number | string | undefined;
+ dictName: string;
+ dictType: string;
+ status: string;
+ remark: string;
}
export interface DictTypeQuery extends PageQuery {
- dictName: string;
- dictType: string;
- status: string;
+ dictName: string;
+ dictType: string;
+ status: string;
}
--
Gitblit v1.9.3