基于Java spring + vue3 + nuxt构建的内容管理系统
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
1007 B

import type { PageParam } from '@/api';
/**
* 企业邮箱记录表
*/
export interface OaAssetsEmail {
// ID
emailId?: number;
// 域名
name?: string;
// 域名标识
code?: string;
// 主机型号
type?: string;
// 品牌厂商
brand?: string;
// 初始账号
system?: 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 OaAssetsEmailParam extends PageParam {
emailId?: number;
keywords?: string;
}