feat:工单添加评价文字、图片
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-31 15:25:36 +08:00
parent 988ce1d7c4
commit d722c62f49
2 changed files with 52 additions and 13 deletions

View File

@@ -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;
}