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.
26 lines
513 B
26 lines
513 B
import type { PageParam } from '@/api';
|
|
|
|
export interface Version {
|
|
id?: number;
|
|
versionName?: string;
|
|
versionCode?: string;
|
|
vueDownloadUrl?: string;
|
|
androidDownloadUrl?: string;
|
|
iosDownloadUrl?: string;
|
|
updateInfo?: any;
|
|
isHard?: boolean;
|
|
isHot?: boolean;
|
|
status?: number;
|
|
comments?: string;
|
|
tenantId?: number;
|
|
createTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 角色搜索条件
|
|
*/
|
|
export interface VersionParam extends PageParam {
|
|
versionName?: string;
|
|
versionCode?: string;
|
|
comments?: string;
|
|
}
|