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.
35 lines
661 B
35 lines
661 B
import type { PageParam } from '@/api';
|
|
import { User } from '@/api/user/model';
|
|
|
|
/**
|
|
* 任务
|
|
*/
|
|
export interface TaskRecord {
|
|
// 任务id
|
|
taskRecordId?: number;
|
|
taskId?: number;
|
|
parentId?: number;
|
|
nickname?: string;
|
|
avatar?: string;
|
|
content?: string;
|
|
files?: any;
|
|
appId?: number;
|
|
developerId?: number;
|
|
userId?: number;
|
|
sortNumber?: number;
|
|
comments?: string;
|
|
status?: string;
|
|
children?: TaskRecord[] | [];
|
|
createTime?: string;
|
|
toUser: User | null;
|
|
}
|
|
|
|
/**
|
|
* 任务搜索条件
|
|
*/
|
|
export interface TaskRecordParam extends PageParam {
|
|
taskRecordId?: number;
|
|
taskId?: number;
|
|
userId?: number;
|
|
developerId?: number;
|
|
}
|