feat:工单添加评价文字、图片
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
import type {PageQuery, BaseEntity} from '#/api/common';
|
||||
|
||||
export interface WorkOrdersVO {
|
||||
/**
|
||||
@@ -71,8 +71,40 @@ export interface WorkOrdersVO {
|
||||
*/
|
||||
isTimeOut: number;
|
||||
|
||||
workOrdersRecordVoList: HandleRecords[];
|
||||
|
||||
typeName: string;
|
||||
|
||||
initiatorPeople: string;
|
||||
|
||||
handlerText: string;
|
||||
/**
|
||||
* 评价图片
|
||||
*/
|
||||
imgUrl: string;
|
||||
/**
|
||||
* 评价内容
|
||||
*/
|
||||
serviceEvaluaText: string;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
createTime: string;
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
}
|
||||
|
||||
export interface HandleRecords {
|
||||
status: string;
|
||||
createTime: string;
|
||||
handlerName: string;
|
||||
initiatorPeople: string;
|
||||
}
|
||||
|
||||
|
||||
export interface WorkOrdersForm extends BaseEntity {
|
||||
/**
|
||||
* id
|
||||
@@ -213,7 +245,7 @@ export interface WorkOrdersQuery extends PageQuery {
|
||||
isTimeOut?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
Reference in New Issue
Block a user