基于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.
 
 
 

31 lines
569 B

import type { PageParam } from '@/api';
/**
* 应用成员
*/
export interface OaAppUser {
// 自增ID
appUserId?: number;
// 角色,10体验成员 20开发者成员 30管理员
role?: number;
// 用户ID
userId?: number;
// 应用ID
appId?: number;
// 昵称
nickname?: string;
// 状态, 0正常, 1待确认
status?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
}
/**
* 应用成员搜索条件
*/
export interface OaAppUserParam extends PageParam {
appUserId?: number;
keywords?: string;
}