巡检任务编辑完成
This commit is contained in:
@@ -12,17 +12,17 @@ export interface TaskVO {
|
||||
/**
|
||||
* 关联巡检计划ID
|
||||
*/
|
||||
planId: string | number;
|
||||
planId: string;
|
||||
|
||||
/**
|
||||
* 巡检人员ID
|
||||
*/
|
||||
inspectorId: string | number;
|
||||
inspectorId: string;
|
||||
|
||||
/**
|
||||
* 巡检路线ID
|
||||
*/
|
||||
routeId: string | number;
|
||||
routeId: string;
|
||||
|
||||
/**
|
||||
* 起止日期
|
||||
@@ -34,6 +34,15 @@ export interface TaskVO {
|
||||
*/
|
||||
status: string;
|
||||
|
||||
/** 巡检人员信息 */
|
||||
inspectorInfo: {
|
||||
'userId': string;
|
||||
'userName': string;
|
||||
'nickName': string;
|
||||
'phonenumber': '';
|
||||
'avatar': string;
|
||||
}[];
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@@ -59,17 +68,17 @@ export interface TaskForm extends BaseEntity {
|
||||
/**
|
||||
* 关联巡检计划ID
|
||||
*/
|
||||
planId?: string | number;
|
||||
planId?: string;
|
||||
|
||||
/**
|
||||
* 巡检人员ID
|
||||
*/
|
||||
inspectorId?: string | number;
|
||||
inspectorId?: string;
|
||||
|
||||
/**
|
||||
* 巡检路线ID
|
||||
*/
|
||||
routeId?: string | number;
|
||||
routeId?: string;
|
||||
|
||||
/**
|
||||
* 起止日期
|
||||
@@ -101,17 +110,17 @@ export interface TaskQuery extends PageQuery {
|
||||
/**
|
||||
* 关联巡检计划ID
|
||||
*/
|
||||
planId?: string | number;
|
||||
planId?: string;
|
||||
|
||||
/**
|
||||
* 巡检人员ID
|
||||
*/
|
||||
inspectorId?: string | number;
|
||||
inspectorId?: string;
|
||||
|
||||
/**
|
||||
* 巡检路线ID
|
||||
*/
|
||||
routeId?: string | number;
|
||||
routeId?: string;
|
||||
|
||||
/**
|
||||
* 起止日期
|
||||
|
||||
Reference in New Issue
Block a user