新增:并入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,31 @@
import type { PageParam } from '@/api';
/**
* 服务器成员管理
*/
export interface OaAssetsUser {
// 自增ID
id?: number;
// 角色10体验成员 20开发者成员 30管理员
role?: number;
// 用户ID
userId?: number;
// 应用ID
assetsId?: number;
// 昵称
nickname?: string;
// 状态, 0正常, 1待确认
status?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 服务器成员管理搜索条件
*/
export interface OaAssetsUserParam extends PageParam {
id?: number;
keywords?: string;
}