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
429 B
26 lines
429 B
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;
|
|
}
|