From 46d143d1d6fe8f286399f4d027c9a86adf7cd7fc Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期三, 09 七月 2025 08:50:01 +0800 Subject: [PATCH] feat(inspection,maintenance): - 实现保养工单批量确认功能 - 在点检记录确认时增加时间限制,距离上次更新时间两小时内不允许确认 --- eims-ui/apps/web-antd/src/api/eims/maint-order/model.d.ts | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/eims-ui/apps/web-antd/src/api/eims/maint-order/model.d.ts b/eims-ui/apps/web-antd/src/api/eims/maint-order/model.d.ts index 996513f..ffb06e7 100644 --- a/eims-ui/apps/web-antd/src/api/eims/maint-order/model.d.ts +++ b/eims-ui/apps/web-antd/src/api/eims/maint-order/model.d.ts @@ -15,6 +15,11 @@ maintType: string; /** + * 宸ヤ綔鎻忚堪 + */ + maintDesc: string; + + /** * 璁″垝琛ㄥ啑浣�-淇濆吇鍛ㄦ湡 */ maintCycle: number; @@ -87,3 +92,32 @@ remark: string; } +export interface MaintOrderGroupVO { + /** + * + */ + id: number | string; + + /** + * + */ + equId: number | string; + + /** + * 璁″垝琛ㄥ啑浣�-淇濆吇浜� + */ + maintUserNames: string; + + + /** + * 楠岃瘉浜� + */ + verifyUserNames: string; + + /** + * 淇濆吇璁″垝鏃堕棿 + */ + planTime: string; + + +} -- Gitblit v1.9.3