From c864fec5f798a1aabcde877469886dd0dc90d092 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Mon, 02 Jan 2023 13:54:18 +0800
Subject: [PATCH] 申请表getAll接口可以根据通行证状态查询
---
src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java | 27 ++++++++++++++++++---------
1 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java b/src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java
index e6bcf64..e39b46c 100644
--- a/src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java
+++ b/src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java
@@ -23,6 +23,7 @@
import java.util.Date;
import lombok.EqualsAndHashCode;
import org.springblade.core.tenant.mp.TenantEntity;
+import org.springblade.flow.core.entity.FlowEntity;
/**
* 车辆变更申请表 实体类
@@ -34,17 +35,25 @@
@TableName("sys_application_car_change")
@ApiModel(value = "ApplicationCarChange对象", description = "车辆变更申请表")
@EqualsAndHashCode(callSuper = true)
-public class ApplicationCarChangeEntity extends TenantEntity {
+public class ApplicationCarChangeEntity extends FlowEntity {
/**
- * 申请表主键
+ * 申请编号
*/
- @ApiModelProperty(value = "申请表主键")
- private String applicationId;
- /**
- * 变更车辆的车牌
- */
- @ApiModelProperty(value = "变更车辆的车牌")
- private String licenseUrl;
+ @ApiModelProperty(value = "申请编号")
+ private String no;
+ /**
+ * 变更车辆原因
+ */
+ @ApiModelProperty(value = "变更车辆原因")
+ private String reason;
+ /**
+ * 流程定义id
+ */
+ private String processDefinitionId;
+ /**
+ * 流程实例id
+ */
+ private String processInstanceId;
}
--
Gitblit v1.9.3