初始化
This commit is contained in:
45
api/oa/oaTaskRecord/model/index.ts
Normal file
45
api/oa/oaTaskRecord/model/index.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 工单回复记录表
|
||||
*/
|
||||
export interface OaTaskRecord {
|
||||
// 回复ID
|
||||
taskRecordId?: number;
|
||||
// 上级id, 0是顶级
|
||||
parentId?: number;
|
||||
// 工单ID
|
||||
taskId?: number;
|
||||
// 内容
|
||||
content?: string;
|
||||
// 机密信息
|
||||
confidential?: string;
|
||||
// 联系电话
|
||||
phone?: string;
|
||||
// 工单附件
|
||||
files?: string;
|
||||
// 用户ID
|
||||
userId?: number;
|
||||
// 排序(数字越小越靠前)
|
||||
sortNumber?: number;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 状态, 0待处理, 1已完成
|
||||
status?: number;
|
||||
// 是否删除, 0否, 1是
|
||||
deleted?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
// 修改时间
|
||||
updateTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 工单回复记录表搜索条件
|
||||
*/
|
||||
export interface OaTaskRecordParam extends PageParam {
|
||||
taskRecordId?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user