日期时区问题修改;
This commit is contained in:
+8
-8
@@ -44,12 +44,12 @@ public class UserDriverEnterprise extends BaseVOEntity{
|
||||
private String driverBusinessLicenseOwner;
|
||||
/** 经营许可证有效期开始日期 */
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
/** 经营许可证有效期到期日期 */
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
/** 经营许可证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -78,12 +78,12 @@ public class UserDriverEnterprise extends BaseVOEntity{
|
||||
private String driverEnterpriseAddress;
|
||||
/** 企业营业执照有效期开始日期 */
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
/** 企业营业执照有效期到期日期 */
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
/** 企业营业执照是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -116,12 +116,12 @@ public class UserDriverEnterprise extends BaseVOEntity{
|
||||
private String driverCorpIdcardNumber;
|
||||
/** 法人身份证有效期开始日期 */
|
||||
@ApiModelProperty("法人身份证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateFrom;
|
||||
/** 法人身份证有效期结束日期 */
|
||||
@ApiModelProperty("法人身份证有效期结束日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateTo;
|
||||
/** 法人身份证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -146,7 +146,7 @@ public class UserDriverEnterprise extends BaseVOEntity{
|
||||
private Integer driverEnterpriseFill;
|
||||
/** 承运人企业认证时间 */
|
||||
@ApiModelProperty("承运人企业认证时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "承运人企业认证时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseFillTime;
|
||||
|
||||
@@ -184,4 +184,4 @@ public class UserDriverEnterprise extends BaseVOEntity{
|
||||
|
||||
@ApiModelProperty(name = "tms推送状态: 1-未推送 2- 已推送")
|
||||
private Integer tmsPushStatus;
|
||||
}
|
||||
}
|
||||
+7
-7
@@ -42,15 +42,15 @@ public class UserDriverEntity extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "驾驶证发证机关")
|
||||
private String driverCertificationAuthority;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "初次领证日期")
|
||||
private Date driverLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期开始日期")
|
||||
private Date driverLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期到期日期")
|
||||
private Date driverLicenseDateTo;
|
||||
|
||||
@@ -81,15 +81,15 @@ public class UserDriverEntity extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "从业资格证类别名称")
|
||||
private String driverWorkLicenseTypeName;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证初次领证日期")
|
||||
private Date driverWorkLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期开始日期")
|
||||
private Date driverWorkLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期到期日期")
|
||||
private Date driverWorkLicenseDateTo;
|
||||
|
||||
@@ -149,4 +149,4 @@ public class UserDriverEntity extends BaseVOEntity {
|
||||
*/
|
||||
@ApiModelProperty(name = "组织名称")
|
||||
private String organizationName;
|
||||
}
|
||||
}
|
||||
+5
-5
@@ -47,11 +47,11 @@ public class UserShipperEntity extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "企业注册地址")
|
||||
private String shipperEnterpriseAddress;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限起")
|
||||
private Date shipperEnterpriseLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限止")
|
||||
private Date shipperEnterpriseLicenseDateTo;
|
||||
|
||||
@@ -84,11 +84,11 @@ public class UserShipperEntity extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "法人身份证号加密")
|
||||
private String shipperCorpIdcardNumberDes;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期自")
|
||||
private Date shipperCorpIdcardDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
private Date shipperCorpIdcardDateTo;
|
||||
|
||||
@@ -275,4 +275,4 @@ public class UserShipperEntity extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "推送人姓名")
|
||||
private String pushByName;
|
||||
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -18,10 +18,10 @@ public class UserAuthPo {
|
||||
@ApiModelProperty(name = "身份证号")
|
||||
private String userIdcardNumber;
|
||||
@ApiModelProperty(name = "身份证有效期自")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private String userIdcardDateFrom;
|
||||
@ApiModelProperty(name = "身份证有效期至")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private String userIdcardDateTo;
|
||||
@ApiModelProperty(name = "身份证是否长期:0-无状态,1-是,2-否")
|
||||
private Integer userIdcardLong;
|
||||
@@ -56,4 +56,4 @@ public class UserAuthPo {
|
||||
@ApiModelProperty("身份证发证机关")
|
||||
private String certificationAuthority;
|
||||
|
||||
}
|
||||
}
|
||||
+7
-7
@@ -22,15 +22,15 @@ public class UserDriverAuthPo {
|
||||
@ApiModelProperty(name = "驾驶证发证机关")
|
||||
private String driverCertificationAuthority;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "初次领证日期")
|
||||
private String driverLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期开始日期")
|
||||
private String driverLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期到期日期")
|
||||
private String driverLicenseDateTo;
|
||||
|
||||
@@ -63,15 +63,15 @@ public class UserDriverAuthPo {
|
||||
@ApiModelProperty(name = "从业资格证类别名称")
|
||||
private String driverWorkLicenseTypeName;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证初次领证日期")
|
||||
private String driverWorkLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期开始日期")
|
||||
private String driverWorkLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期到期日期")
|
||||
private String driverWorkLicenseDateTo;
|
||||
|
||||
@@ -109,4 +109,4 @@ public class UserDriverAuthPo {
|
||||
@ApiModelProperty(name = "核定载质量")
|
||||
private BigDecimal vehicleApprovedLoadQuantity;
|
||||
|
||||
}
|
||||
}
|
||||
+3
-3
@@ -28,10 +28,10 @@ public class UserDriverCaptainAuthPo {
|
||||
@ApiModelProperty(name = "身份证号")
|
||||
private String userIdcardNumber;
|
||||
@ApiModelProperty(name = "身份证有效期自")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private String userIdcardDateFrom;
|
||||
@ApiModelProperty(name = "身份证有效期至")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private String userIdcardDateTo;
|
||||
@ApiModelProperty(name = "身份证是否长期:0-无状态,1-是,2-否")
|
||||
private Integer userIdcardLong;
|
||||
@@ -58,4 +58,4 @@ public class UserDriverCaptainAuthPo {
|
||||
private String userAuthStatusName;
|
||||
@ApiModelProperty(name = "用户生日")
|
||||
private String userBirthday = "";
|
||||
}
|
||||
}
|
||||
+7
-7
@@ -41,12 +41,12 @@ public class UserDriverEnterpriseAuthPo {
|
||||
private String driverBusinessLicenseOwner;
|
||||
/** 经营许可证有效期开始日期 */
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
/** 经营许可证有效期到期日期 */
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
/** 经营许可证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -76,12 +76,12 @@ public class UserDriverEnterpriseAuthPo {
|
||||
private String driverEnterpriseAddress;
|
||||
/** 企业营业执照有效期开始日期 */
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
/** 企业营业执照有效期到期日期 */
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
/** 企业营业执照是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -115,12 +115,12 @@ public class UserDriverEnterpriseAuthPo {
|
||||
private String driverCorpIdcardNumber;
|
||||
/** 法人身份证有效期开始日期 */
|
||||
@ApiModelProperty("法人身份证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateFrom;
|
||||
/** 法人身份证有效期结束日期 */
|
||||
@ApiModelProperty("法人身份证有效期结束日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateTo;
|
||||
/** 法人身份证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -165,4 +165,4 @@ public class UserDriverEnterpriseAuthPo {
|
||||
@ApiModelProperty(value = "法人证件类型名称")
|
||||
private String legalPersonIdName;
|
||||
|
||||
}
|
||||
}
|
||||
+8
-8
@@ -42,12 +42,12 @@ public class UserDriverEnterprisePo extends BaseVOEntity{
|
||||
private String driverBusinessLicenseOwner="";
|
||||
/** 经营许可证有效期开始日期 */
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
/** 经营许可证有效期到期日期 */
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
/** 经营许可证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -76,12 +76,12 @@ public class UserDriverEnterprisePo extends BaseVOEntity{
|
||||
private String driverEnterpriseAddress="";
|
||||
/** 企业营业执照有效期开始日期 */
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
/** 企业营业执照有效期到期日期 */
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
/** 企业营业执照是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -114,12 +114,12 @@ public class UserDriverEnterprisePo extends BaseVOEntity{
|
||||
private String driverCorpIdcardNumber="";
|
||||
/** 法人身份证有效期开始日期 */
|
||||
@ApiModelProperty("法人身份证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateFrom;
|
||||
/** 法人身份证有效期结束日期 */
|
||||
@ApiModelProperty("法人身份证有效期结束日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateTo;
|
||||
/** 法人身份证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -145,7 +145,7 @@ public class UserDriverEnterprisePo extends BaseVOEntity{
|
||||
|
||||
/** 承运人企业认证时间 */
|
||||
@ApiModelProperty("承运人企业认证时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "承运人企业认证时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseFillTime;
|
||||
|
||||
@@ -189,4 +189,4 @@ public class UserDriverEnterprisePo extends BaseVOEntity{
|
||||
|
||||
@ApiModelProperty(name = "tms推送状态: 1-未推送 2- 已推送")
|
||||
private Integer tmsPushStatus;
|
||||
}
|
||||
}
|
||||
+16
-16
@@ -32,13 +32,13 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
private String driverLicenseBackUrl = "";
|
||||
@ApiModelProperty(name = "准驾车型名称")
|
||||
private String driverAllowDrivingTypeName = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "初次领证日期")
|
||||
private String driverLicenseFirstDate = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期开始日期")
|
||||
private String driverLicenseDateFrom = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期到期日期")
|
||||
private String driverLicenseDateTo = "";
|
||||
@ApiModelProperty(name = "驾驶证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -60,13 +60,13 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
private String driverWorkLicenseNumber = "";
|
||||
@ApiModelProperty(name = "从业资格证类别名称")
|
||||
private String driverWorkLicenseTypeName = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证初次领证日期")
|
||||
private String driverWorkLicenseFirstDate = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期开始日期")
|
||||
private String driverWorkLicenseDateFrom;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期到期日期")
|
||||
private String driverWorkLicenseDateTo = "";
|
||||
@ApiModelProperty(name = "从业资格证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -86,15 +86,15 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
private String userName = "";
|
||||
@ApiModelProperty(name = "身份证号")
|
||||
private String userIdcardNumber = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期自")
|
||||
private String userIdcardDateFrom = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期至")
|
||||
private String userIdcardDateTo = "";
|
||||
@ApiModelProperty(name = "身份证是否长期:0-无状态,1-是,2-否")
|
||||
private Integer userIdcardLong;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "用户生日")
|
||||
private String userBirthday = "";
|
||||
@ApiModelProperty(name = "县区名称")
|
||||
@@ -120,11 +120,11 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
@ApiModelProperty("企业注册电话")
|
||||
private String driverEnterprisePhone="";
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
@ApiModelProperty("企业营业执照是否长期:0-无状态,1-是,2-否")
|
||||
@@ -145,11 +145,11 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
@ApiModelProperty("法人身份证号")
|
||||
private String driverCorpIdcardNumber="";
|
||||
@ApiModelProperty("法人身份证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateFrom;
|
||||
@ApiModelProperty("法人身份证有效期结束日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateTo;
|
||||
@ApiModelProperty("法人身份证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -164,11 +164,11 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
@ApiModelProperty("经营许可证业户名称")
|
||||
private String driverBusinessLicenseOwner="";
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
@ApiModelProperty("经营许可证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -177,4 +177,4 @@ public class UserDriverInfoPO extends BaseVOEntity {
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
+10
-10
@@ -56,17 +56,17 @@ public class UserDriverPo extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "部门ID")
|
||||
private String departmentId;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "用户生日")
|
||||
private String userBirthday = "";
|
||||
@ApiModelProperty(name = "用户头像")
|
||||
private String avatar= "";
|
||||
@ApiModelProperty(name = "身份证号")
|
||||
private String userIdcardNumber = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期自")
|
||||
private String userIdcardDateFrom = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期至")
|
||||
private String userIdcardDateTo = "";
|
||||
@ApiModelProperty(name = "身份证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -90,15 +90,15 @@ public class UserDriverPo extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "驾驶证发证机关")
|
||||
private String driverCertificationAuthority = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "初次领证日期")
|
||||
private String driverLicenseFirstDate = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期开始日期")
|
||||
private String driverLicenseDateFrom = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期到期日期")
|
||||
private String driverLicenseDateTo = "";
|
||||
@NeedSetValue
|
||||
@@ -129,15 +129,15 @@ public class UserDriverPo extends BaseVOEntity {
|
||||
@ApiModelProperty(name = "从业资格证类别名称")
|
||||
private String driverWorkLicenseTypeName = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证初次领证日期")
|
||||
private String driverWorkLicenseFirstDate = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期开始日期")
|
||||
private String driverWorkLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期到期日期")
|
||||
private String driverWorkLicenseDateTo = "";
|
||||
|
||||
@@ -237,4 +237,4 @@ public class UserDriverPo extends BaseVOEntity {
|
||||
|
||||
@ApiModelProperty(name = "经营许可证号")
|
||||
private String driverBusinessLicenseNumber;
|
||||
}
|
||||
}
|
||||
+5
-5
@@ -33,11 +33,11 @@ public class UserShipperAuthPo {
|
||||
@ApiModelProperty(name = "企业注册地址")
|
||||
private String shipperEnterpriseAddress;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限起")
|
||||
private String shipperEnterpriseLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限止")
|
||||
private String shipperEnterpriseLicenseDateTo;
|
||||
|
||||
@@ -61,10 +61,10 @@ public class UserShipperAuthPo {
|
||||
private String shipperCorpLegalName;
|
||||
@ApiModelProperty(name = "法人身份证号")
|
||||
private String shipperCorpIdcardNumber;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期自")
|
||||
private String shipperCorpIdcardDateFrom;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
private String shipperCorpIdcardDateTo;
|
||||
@ApiModelProperty(name = "法人身份证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -121,4 +121,4 @@ public class UserShipperAuthPo {
|
||||
@ApiModelProperty(name = "成立日期")
|
||||
private String establishDate;
|
||||
|
||||
}
|
||||
}
|
||||
+8
-8
@@ -33,7 +33,7 @@ public class UserShipperPo implements Serializable {
|
||||
@NeedSetValue
|
||||
@ApiModelProperty(name = "手持身份证")
|
||||
private String userIdcardInhandUrl = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "用户生日")
|
||||
private String userBirthday = "";
|
||||
@ApiModelProperty(name = "手机号码")
|
||||
@@ -47,10 +47,10 @@ public class UserShipperPo implements Serializable {
|
||||
private String roleName = "";
|
||||
@ApiModelProperty(name = "身份证号")
|
||||
private String userIdcardNumber = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期自")
|
||||
private String userIdcardDateFrom = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "身份证有效期至")
|
||||
private String userIdcardDateTo = "";
|
||||
@ApiModelProperty(name = "身份证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -82,11 +82,11 @@ public class UserShipperPo implements Serializable {
|
||||
@ApiModelProperty(name = "企业注册地址")
|
||||
private String shipperEnterpriseAddress = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限起")
|
||||
private String shipperEnterpriseLicenseDateFrom = "";
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限止")
|
||||
private String shipperEnterpriseLicenseDateTo = "";
|
||||
|
||||
@@ -137,10 +137,10 @@ public class UserShipperPo implements Serializable {
|
||||
private String shipperCorpIdcardNumber = "";
|
||||
@ApiModelProperty(name = "法人身份证号加密")
|
||||
private String shipperCorpIdcardNumberDes = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期自")
|
||||
private String shipperCorpIdcardDateFrom = "";
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
private String shipperCorpIdcardDateTo = "";
|
||||
@ApiModelProperty(name = "法人身份证是否长期:0-无状态,1-是,2-否")
|
||||
@@ -335,4 +335,4 @@ public class UserShipperPo implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "推送人姓名")
|
||||
private String pushByName;
|
||||
}
|
||||
}
|
||||
+11
-11
@@ -57,15 +57,15 @@ public class UserDriverDO extends UserDO {
|
||||
@ApiModelProperty(name = "驾驶证发证机关")
|
||||
private String driverCertificationAuthority;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "初次领证日期")
|
||||
private Date driverLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期开始日期")
|
||||
private Date driverLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "驾驶证有效期到期日期")
|
||||
private Date driverLicenseDateTo;
|
||||
|
||||
@@ -98,15 +98,15 @@ public class UserDriverDO extends UserDO {
|
||||
@ApiModelProperty(name = "从业资格证类别名称")
|
||||
private String driverWorkLicenseTypeName;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证初次领证日期")
|
||||
private Date driverWorkLicenseFirstDate;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期开始日期")
|
||||
private Date driverWorkLicenseDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "从业资格证有效期到期日期")
|
||||
private Date driverWorkLicenseDateTo;
|
||||
|
||||
@@ -176,11 +176,11 @@ public class UserDriverDO extends UserDO {
|
||||
private String driverBusinessLicenseNumber;
|
||||
/** 经营许可证有效期开始日期 */
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
/** 经营许可证有效期到期日期 */
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
/** 企业名称 */
|
||||
@ApiModelProperty("企业名称")
|
||||
@@ -189,12 +189,12 @@ public class UserDriverDO extends UserDO {
|
||||
private String driverEnterpriseSocialCreditCode;
|
||||
/** 企业营业执照有效期开始日期 */
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
/** 企业营业执照有效期到期日期 */
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
|
||||
@@ -292,4 +292,4 @@ public class UserDriverDO extends UserDO {
|
||||
@ApiModelProperty("当前用户的组织是否开启排队")
|
||||
private Integer isQueue;
|
||||
|
||||
}
|
||||
}
|
||||
+8
-8
@@ -42,12 +42,12 @@ public class UserDriverEnterpriseDo extends UserDO{
|
||||
private String driverBusinessLicenseOwner;
|
||||
/** 经营许可证有效期开始日期 */
|
||||
@ApiModelProperty("经营许可证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateFrom;
|
||||
/** 经营许可证有效期到期日期 */
|
||||
@ApiModelProperty("经营许可证有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "经营许可证有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverBusinessLicenseDateTo;
|
||||
/** 经营许可证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -77,12 +77,12 @@ public class UserDriverEnterpriseDo extends UserDO{
|
||||
private String driverEnterpriseAddress;
|
||||
/** 企业营业执照有效期开始日期 */
|
||||
@ApiModelProperty("企业营业执照有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateFrom;
|
||||
/** 企业营业执照有效期到期日期 */
|
||||
@ApiModelProperty("企业营业执照有效期到期日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "企业营业执照有效期到期日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseLicenseDateTo;
|
||||
/** 企业营业执照是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -116,12 +116,12 @@ public class UserDriverEnterpriseDo extends UserDO{
|
||||
private String driverCorpIdcardNumber;
|
||||
/** 法人身份证有效期开始日期 */
|
||||
@ApiModelProperty("法人身份证有效期开始日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期开始日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateFrom;
|
||||
/** 法人身份证有效期结束日期 */
|
||||
@ApiModelProperty("法人身份证有效期结束日期")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "法人身份证有效期结束日期", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverCorpIdcardDateTo;
|
||||
/** 法人身份证是否长期:0-无状态,1-是,2-否 */
|
||||
@@ -149,7 +149,7 @@ public class UserDriverEnterpriseDo extends UserDO{
|
||||
private Integer driverEnterpriseFill;
|
||||
/** 承运人企业认证时间 */
|
||||
@ApiModelProperty("承运人企业认证时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "承运人企业认证时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date driverEnterpriseFillTime;
|
||||
|
||||
@@ -215,4 +215,4 @@ public class UserDriverEnterpriseDo extends UserDO{
|
||||
@ApiModelProperty(name = "tms推送状态: 1-未推送 2- 已推送")
|
||||
private Integer tmsPushStatus;
|
||||
|
||||
}
|
||||
}
|
||||
+7
-7
@@ -45,11 +45,11 @@ public class UserShipperDO extends UserDO {
|
||||
@ApiModelProperty(name = "企业注册地址")
|
||||
private String shipperEnterpriseAddress;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限起")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date shipperEnterpriseLicenseDateFrom;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "企业营业期限止")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date shipperEnterpriseLicenseDateTo;
|
||||
@@ -87,12 +87,12 @@ public class UserShipperDO extends UserDO {
|
||||
@ApiModelProperty(name = "法人身份证号加密")
|
||||
private String shipperCorpIdcardNumberDes;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期自")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date shipperCorpIdcardDateFrom;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date shipperCorpIdcardDateTo;
|
||||
@@ -127,10 +127,10 @@ public class UserShipperDO extends UserDO {
|
||||
@ApiModelProperty(name = "货主审核原因")
|
||||
private String shipperStatusRemark;
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
private Date shipperCorpIdcardDateToStart;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@ApiModelProperty(name = "法人身份证有效期止")
|
||||
private Date shipperCorpIdcardDateToEnd;
|
||||
|
||||
@@ -315,4 +315,4 @@ public class UserShipperDO extends UserDO {
|
||||
@ApiModelProperty(name = "登录密码(6-20位)")
|
||||
private String userPassword;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user