From af24b40f3bc017fb30f1cf32fda0b32aca3fe19f Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期三, 08 三月 2023 00:50:20 +0800
Subject: [PATCH] 优化充电桩厂家
---
java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java | 47 ++++++++++++++++++++++++++++++-----------------
1 files changed, 30 insertions(+), 17 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java b/java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java
index e03e947..d1c5cea 100644
--- a/java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/itemReleaseType/ItemReleaseTypeDto.java
@@ -1,6 +1,8 @@
package com.java110.dto.itemReleaseType;
import com.java110.dto.PageDto;
+import com.java110.dto.oaWorkflow.OaWorkflowDto;
+
import java.io.Serializable;
import java.util.Date;
@@ -12,14 +14,14 @@
* @Version 1.0
* add by wuxw 2019/4/24
**/
-public class ItemReleaseTypeDto extends PageDto implements Serializable {
+public class ItemReleaseTypeDto extends OaWorkflowDto implements Serializable {
private String typeName;
-private String typeId;
-private String remark;
-private String communityId;
-private String flowId;
-private String flowName;
+ private String typeId;
+ private String remark;
+ private String communityId;
+ private String flowId;
+ private String flowName;
private Date createTime;
@@ -30,37 +32,48 @@
public String getTypeName() {
return typeName;
}
-public void setTypeName(String typeName) {
+
+ public void setTypeName(String typeName) {
this.typeName = typeName;
}
-public String getTypeId() {
+
+ public String getTypeId() {
return typeId;
}
-public void setTypeId(String typeId) {
+
+ public void setTypeId(String typeId) {
this.typeId = typeId;
}
-public String getRemark() {
+
+ public String getRemark() {
return remark;
}
-public void setRemark(String remark) {
+
+ public void setRemark(String remark) {
this.remark = remark;
}
-public String getCommunityId() {
+
+ public String getCommunityId() {
return communityId;
}
-public void setCommunityId(String communityId) {
+
+ public void setCommunityId(String communityId) {
this.communityId = communityId;
}
-public String getFlowId() {
+
+ public String getFlowId() {
return flowId;
}
-public void setFlowId(String flowId) {
+
+ public void setFlowId(String flowId) {
this.flowId = flowId;
}
-public String getFlowName() {
+
+ public String getFlowName() {
return flowName;
}
-public void setFlowName(String flowName) {
+
+ public void setFlowName(String flowName) {
this.flowName = flowName;
}
--
Gitblit v1.8.0