From 14a1215bc4351bba39bf5cb0b9162cc8d82ddf70 Mon Sep 17 00:00:00 2001 From: yh <1844516659@qq.com> Date: Tue, 19 Jul 2022 17:17:15 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A3=9E=E6=BB=B4=E5=87=BA=E8=A1=8C=E7=BD=91?= =?UTF-8?q?=E7=BA=A6=E8=BD=A62022-service-driver-user=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E7=B1=BBDriverUser=E6=97=A5=E6=9C=9F=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../internalcommon/dto/DriverUser.java | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/internal-common/src/main/java/com/mashibing/internalcommon/dto/DriverUser.java b/internal-common/src/main/java/com/mashibing/internalcommon/dto/DriverUser.java index 1eae653..0f8ce66 100644 --- a/internal-common/src/main/java/com/mashibing/internalcommon/dto/DriverUser.java +++ b/internal-common/src/main/java/com/mashibing/internalcommon/dto/DriverUser.java @@ -2,6 +2,7 @@ package com.mashibing.internalcommon.dto; import lombok.Data; +import java.time.LocalDate; import java.util.Date; @Data @@ -12,26 +13,29 @@ public class DriverUser { private String driverName; private String driverPhone; private Integer driverGender; - private Date driverBirthday; + private LocalDate driverBirthday; private String driverNation; private String driverContactAddress; private String licenseId; - private Date getDriverLicenseDate; - private Date driverLicenseOn; - private Date driverLicenseOff; + + private LocalDate getDriverLicenseDate; + private LocalDate driverLicenseOn; + private LocalDate driverLicenseOff; private Integer taxiDriver; private String certificateNo; private String networkCarIssueOrganization; - private Date networkCarIssueDate; - private Date getNetworkCarProofDate; - private Date networkCarProofOn; - private Date networkCarProofOff; - private Date registerDate; + private LocalDate networkCarIssueDate; + private LocalDate getNetworkCarProofDate; + private LocalDate networkCarProofOn; + private LocalDate networkCarProofOff; + private LocalDate registerDate; private Integer commercialType; private String contractCompany; - private Date contractOn; - private Date contractOff; + private LocalDate contractOn; + private LocalDate contractOff; private Integer state; + private Date gmtCreate; private Date gmtModified; + }