初始化
This commit is contained in:
31
api/oa/oaTaskUser/model/index.ts
Normal file
31
api/oa/oaTaskUser/model/index.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 工单成员
|
||||
*/
|
||||
export interface OaTaskUser {
|
||||
// 自增ID
|
||||
taskUserId?: number;
|
||||
// 角色,10体验成员 20开发者成员 30管理员
|
||||
role?: number;
|
||||
// 用户ID
|
||||
userId?: number;
|
||||
// 工单ID
|
||||
taskId?: number;
|
||||
// 昵称
|
||||
nickname?: string;
|
||||
// 状态, 0待处理, 1已完成
|
||||
status?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 加入时间
|
||||
createTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 工单成员搜索条件
|
||||
*/
|
||||
export interface OaTaskUserParam extends PageParam {
|
||||
taskUserId?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user