25 lines
386 B
TypeScript
25 lines
386 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 项目参数
|
|
*/
|
|
export interface AppField {
|
|
id?: number;
|
|
name?: string;
|
|
comments?: string;
|
|
userId?: number;
|
|
appId?: number;
|
|
status?: any;
|
|
sortNumber?: any;
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 项目参数搜索条件
|
|
*/
|
|
export interface AppFieldParam extends PageParam {
|
|
id?: number;
|
|
userId?: number;
|
|
appId?: number;
|
|
}
|