飞滴出行网约车2022-service-driver-user实体类DriverUser日期类型完善

master
yh 3 years ago
parent 29f9b6a6a1
commit 14a1215bc4

@ -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;
}

Loading…
Cancel
Save