From dc60071d490879633da257052fcbc24b2e71f3b2 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Wed, 21 Dec 2022 17:01:03 +0800
Subject: [PATCH] 延期申请工作流

---
 src/main/java/org/springblade/modules/applicationCarChange/entity/ApplicationCarChangeEntity.java |   22 +++++++++++++++-------
 1 files changed, 15 insertions(+), 7 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..5c5fc22 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,24 @@
 @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 no;
+
 	/**
-	 * 变更车辆的车牌
+	 * 车辆id主键
 	 */
-	@ApiModelProperty(value = "变更车辆的车牌")
-	private String licenseUrl;
+	@ApiModelProperty(value = "申请编号")
+	private String carId;
+
+	/**
+	 * 变更车辆原因
+	 */
+	@ApiModelProperty(value = "变更车辆原因")
+	private String reason;
 
 }

--
Gitblit v1.9.3