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.
91 lines
1.9 KiB
91 lines
1.9 KiB
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 服务器资产记录表
|
|
*/
|
|
export interface OaAssets {
|
|
// 资产ID
|
|
assetsId?: number;
|
|
// 资产名称
|
|
name?: string;
|
|
// 资产标识
|
|
code?: string;
|
|
// 资产类型
|
|
type?: string;
|
|
// 服务器厂商
|
|
brand?: string;
|
|
// 服务器配置
|
|
configuration?: string;
|
|
// 初始账号
|
|
account?: string;
|
|
// 初始密码
|
|
password?: string;
|
|
// (阿里云/腾讯云)登录账号
|
|
brandAccount?: string;
|
|
// (阿里云/腾讯云)登录密码
|
|
brandPassword?: string;
|
|
// 宝塔面板
|
|
panel?: string;
|
|
// 宝塔面板账号
|
|
panelAccount?: string;
|
|
// 宝塔面板密码
|
|
panelPassword?: string;
|
|
// 财务信息-合同金额
|
|
financeAmount?: string;
|
|
// 购买年限
|
|
financeYears?: number;
|
|
// 续费金额
|
|
financeRenew?: string;
|
|
// 客户名称
|
|
financeCustomerName?: string;
|
|
// 客户联系人
|
|
financeCustomerContact?: string;
|
|
// 客户联系电话
|
|
financeCustomerPhone?: string;
|
|
// 客户ID
|
|
customerId?: number;
|
|
// 客户名称
|
|
customerName?: string;
|
|
// 开放端口
|
|
openPort?: string;
|
|
// 详情内容
|
|
content?: string;
|
|
// 购买时间
|
|
startTime?: string;
|
|
// 到期时间
|
|
endTime?: string;
|
|
// 置顶状态
|
|
isTop?: string;
|
|
// 可见性(public,private,protected)
|
|
visibility?: string;
|
|
// 宝塔接口秘钥
|
|
btSign?: string;
|
|
// 文章排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 描述
|
|
comments?: string;
|
|
// 客户ID
|
|
companyId?: number;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 机构id
|
|
organizationId?: number;
|
|
// 状态, 0正常, 1冻结
|
|
status?: string;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 服务器资产记录表搜索条件
|
|
*/
|
|
export interface OaAssetsParam extends PageParam {
|
|
assetsId?: number;
|
|
keywords?: string;
|
|
}
|