基于Java spring + vue3 + nuxt构建的内容管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
348 B

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;
}