From 74ec2603087f0df1931725c86bbfef4e62f941fb Mon Sep 17 00:00:00 2001 From: zhangyongzhangyong <2012005003@qq.com> Date: Fri, 17 Sep 2021 10:44:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E8=A6=81=E6=8F=90=E5=BB=BA=E8=AE=AE?= =?UTF-8?q?=EF=BC=8C=E5=AD=97=E6=AE=B5=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/elink/esua/epdc/dto/TypeNode.java | 4 ++-- .../com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TypeNode.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TypeNode.java index 802dbbd..52fabef 100644 --- a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TypeNode.java +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TypeNode.java @@ -38,7 +38,7 @@ public class TypeNode implements Serializable { /** * 主键 */ - private String value; + private Long value; /** * 名称 @@ -48,7 +48,7 @@ public class TypeNode implements Serializable { /** * 上级ID */ - private String pid; + private Long pid; /** * 子级集合 diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java index ba3dd46..b950cc3 100644 --- a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java @@ -164,5 +164,5 @@ public class SuggestionMakeDTO implements Serializable { /** * 建议图片 关联:epdc_custom_img 表;最多三张,逗号分隔 */ - private List> suggestionPicList; + private List suggestionPicList; }