|
|
@@ -24,6 +24,11 @@ interface BasicResponse {
|
|
|
export interface TaskManagementListResponse extends BasicResponse {
|
|
|
effectStatus: number;
|
|
|
updatedAt: string;
|
|
|
+ executive: {
|
|
|
+ id: number;
|
|
|
+ realname: string;
|
|
|
+ staffNo: string;
|
|
|
+ }[];
|
|
|
}
|
|
|
|
|
|
export interface TaskExecutionListResponse extends BasicResponse {
|
|
|
@@ -34,7 +39,7 @@ export interface TaskExecutionListResponse extends BasicResponse {
|
|
|
export interface TaskManagementItemResponse
|
|
|
extends Omit<
|
|
|
TaskManagementListResponse,
|
|
|
- 'deptName' | 'inspectType' | 'overdue' | 'effectStatus' | 'taskState' | 'updatedAt'
|
|
|
+ 'deptName' | 'inspectType' | 'overdue' | 'effectStatus' | 'taskState' | 'updatedAt' | 'executive'
|
|
|
> {
|
|
|
inspectType: number | null;
|
|
|
deptIdList: string[] | string;
|