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.
55 lines
1016 B
55 lines
1016 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 域名管理记录表
|
|
*/
|
|
export interface OaAssetsDomain {
|
|
// ID
|
|
domainId?: number;
|
|
// 域名
|
|
name?: string;
|
|
// 域名标识
|
|
code?: string;
|
|
// 注册厂商
|
|
brand?: string;
|
|
// 初始账号
|
|
account?: string;
|
|
// 初始密码
|
|
password?: string;
|
|
// 价格
|
|
price?: number;
|
|
// 详情内容
|
|
content?: string;
|
|
// ssl证书
|
|
ssl?: string;
|
|
// 购买时间
|
|
startTime?: string;
|
|
// 到期时间
|
|
endTime?: string;
|
|
// 置顶状态
|
|
isTop?: string;
|
|
// 排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 描述
|
|
comments?: string;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 状态, 0正常, 1冻结
|
|
status?: string;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 域名管理记录表搜索条件
|
|
*/
|
|
export interface OaAssetsDomainParam extends PageParam {
|
|
domainId?: number;
|
|
keywords?: string;
|
|
}
|