Files
template-10490/api/oa/app/url/model/index.ts
2025-01-27 23:24:42 +08:00

27 lines
429 B
TypeScript

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