新增:并入shop、cms、oa三大模块代码

This commit is contained in:
2024-09-13 00:10:29 +08:00
parent 0068553e35
commit ea5a48fa29
424 changed files with 64497 additions and 67 deletions

View File

@@ -0,0 +1,55 @@
import type { PageParam } from '@/api';
/**
* 网站管理记录表
*/
export interface OaAssetsSite {
// ID
siteId?: number;
// 网站名称
name?: string;
// 域名标识
code?: string;
// 主机型号
type?: string;
// 品牌厂商
brand?: string;
// 初始账号
system?: string;
// 价格
price?: string;
// 详情内容
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 OaAssetsSiteParam extends PageParam {
siteId?: number;
keywords?: string;
}