Files
site-10584/api/system/version/model/index.ts
2026-01-29 10:43:43 +08:00

27 lines
513 B
TypeScript

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