初始化
This commit is contained in:
31
api/oa/oaCompanyUser/model/index.ts
Normal file
31
api/oa/oaCompanyUser/model/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 成员管理
|
||||
*/
|
||||
export interface OaCompanyUser {
|
||||
// 自增ID
|
||||
companyUserId?: number;
|
||||
// 角色,10体验成员 20开发者成员 30管理员
|
||||
role?: number;
|
||||
// 用户ID
|
||||
userId?: number;
|
||||
// 企业ID
|
||||
companyId?: number;
|
||||
// 昵称
|
||||
nickname?: string;
|
||||
// 状态, 0正常, 1待确认
|
||||
status?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 成员管理搜索条件
|
||||
*/
|
||||
export interface OaCompanyUserParam extends PageParam {
|
||||
companyUserId?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user