1
This commit is contained in:
22
api/system/modules/model/index.ts
Normal file
22
api/system/modules/model/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 插件
|
||||
*/
|
||||
export interface Modules {
|
||||
id?: number;
|
||||
modules?: string;
|
||||
modulesUrl?: string;
|
||||
sortNumber?: number;
|
||||
comments?: string;
|
||||
status?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* 插件搜索条件
|
||||
*/
|
||||
export interface ModulesParam extends PageParam {
|
||||
id: number;
|
||||
modules: string;
|
||||
modulesUrl?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user