From f51df7143eaf03e7d45e163fb443043902791267 Mon Sep 17 00:00:00 2001 From: Jackwang Date: Wed, 13 Oct 2021 17:09:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=8C=E7=A8=8B=E4=B8=8A=E6=8A=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/elink/esua/epdc/dto/TripListDTO.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TripListDTO.java diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TripListDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TripListDTO.java new file mode 100644 index 0000000..ea0c0e9 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/TripListDTO.java @@ -0,0 +1,23 @@ +package com.elink.esua.epdc.dto; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @program: epdc-cloud-custom-yushan + * @description: + * @author: wangtong + * @create: 2021-10-13 16:48 + **/ +@Data +public class TripListDTO implements Serializable { + + private String id; + + private String name; + + private String comeAddressName; + + private String createdTime; +} \ No newline at end of file