/** * @description: 我的待办查询参数 */ export interface MyUncompletedParams { keyWord: string; page: number; limit: number; startDate: string; endDate: string; } export interface TaskDetailParam { id: string; }