Files
template-10490/api/oa/oaAppUser/model/index.ts
2025-01-27 23:24:42 +08:00

32 lines
569 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}