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.
45 lines
869 B
45 lines
869 B
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;
|
|
}
|