From 8f46e5601939d1619bc8bdf06cc0e8eb3ffea30f Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Tue, 07 Apr 2026 13:21:07 +0800
Subject: [PATCH] opt: 流程查询
---
drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdWorkOrderFlowEntity.java | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdWorkOrderFlowEntity.java b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdWorkOrderFlowEntity.java
index 68a0897..fe8e77a 100644
--- a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdWorkOrderFlowEntity.java
+++ b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdWorkOrderFlowEntity.java
@@ -16,6 +16,7 @@
*/
package org.sxkj.gd.workorder.entity;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -60,7 +61,8 @@
* 关联工单任务表ID/巡查任务ID
*/
@ApiModelProperty(value = "关联工单任务表ID/巡查任务ID")
- private Long workOrderId;
+ @TableField(value = "work_order_id", condition = "= #{workOrderId}")
+ private Long workOrderId;
/**
* 操作人
*/
--
Gitblit v1.9.3