import type { PageParam } from '@/api'; /** * 项目域名 */ export interface AppUrl { appUrlId?: number; name?: string; domain?: string; account?: string; password?: string; comments?: string; appId?: number; status?: any; sortNumber?: any; createTime?: string; } /** * 项目域名搜索条件 */ export interface AppUrlParam extends PageParam { id?: number; userId?: number; appId?: number; }