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.
31 lines
515 B
31 lines
515 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 链接
|
|
*/
|
|
export interface Link {
|
|
id?: number;
|
|
name?: string;
|
|
icon?: string;
|
|
url?: string;
|
|
linkType?: string;
|
|
appId?: number;
|
|
categoryId?: number;
|
|
userId?: number;
|
|
comments?: string;
|
|
recommend?: number;
|
|
sortNumber?: number;
|
|
deleted?: number;
|
|
status?: number;
|
|
createTime?: number;
|
|
}
|
|
|
|
/**
|
|
* 链接搜索条件
|
|
*/
|
|
export interface LinkParam extends PageParam {
|
|
id?: number;
|
|
linkType?: string;
|
|
categoryId?: number;
|
|
name?: string;
|
|
}
|