日期时区问题修改;

This commit is contained in:
王奎兴
2026-05-28 21:21:51 +08:00
parent 39503f9f3c
commit c7cb8614ef
170 changed files with 690 additions and 692 deletions
@@ -112,7 +112,7 @@ public class AccountTransferRecharge extends BaseVOEntity
private String accountTransferReviewer;
/** 审核时间 */
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@ApiModelProperty(name = "审核时间")
private Date transferReviewerTime;
@@ -65,12 +65,12 @@ public class BranchBill extends BaseVOEntity {
private Integer billStatus;
@ApiModelProperty("交账周期开始")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "交账周期开始", width = 30, dateFormat = "yyyy-MM-dd")
private Date billTimeStart;
@ApiModelProperty("交账周期结束")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "交账周期结束", width = 30, dateFormat = "yyyy-MM-dd")
private Date billTimeEnd;
@@ -118,7 +118,7 @@ public class BusinessDocument extends BaseVOEntity{
private Integer payStatus;
@ApiModelProperty("付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTime;
@@ -126,7 +126,7 @@ public class BusinessDocument extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -165,7 +165,7 @@ public class BusinessDocument extends BaseVOEntity{
private BigDecimal commissionRate;
@ApiModelProperty("货主付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTimeShipper;
@@ -174,4 +174,4 @@ public class BusinessDocument extends BaseVOEntity{
@ApiModelProperty(value = "合单主单单号(单据类型为2 不能为空)")
private String mainOrderNumber;
}
}
@@ -85,7 +85,7 @@ public class AccountsReceivableAppPO extends BaseVOEntity{
private String vehicleLicensePlateNumber = "";
@ApiModelProperty("接收时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "接收时间", width = 30, dateFormat = "yyyy-MM-dd")
@JsonSerialize(nullsUsing = DateNullToStringSerializer.class)
private Date receptionTime;
@@ -100,4 +100,4 @@ public class AccountsReceivableAppPO extends BaseVOEntity{
private String mailAreaName = "";
}
}
@@ -104,7 +104,7 @@ public class BusinessDocumentAppPO extends BaseVOEntity{
private String vehicleLicensePlateNumber = "";
@ApiModelProperty("接收时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "接收时间", width = 30, dateFormat = "yyyy-MM-dd")
@JsonSerialize(nullsUsing = DateNullToStringSerializer.class)
private Date receptionTime;
@@ -124,7 +124,7 @@ public class BusinessDocumentAppPO extends BaseVOEntity{
private Integer payStatus;
@ApiModelProperty("付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
@JsonSerialize(nullsUsing = DateNullToStringSerializer.class)
private Date payTime;
@@ -133,7 +133,7 @@ public class BusinessDocumentAppPO extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
@JsonSerialize(nullsUsing = DateNullToStringSerializer.class)
private Date waybillVerifyTime;
@@ -154,7 +154,7 @@ public class BusinessDocumentAppPO extends BaseVOEntity{
private String freightName = "";
@ApiModelProperty("货主付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTimeShipper;
}
}
@@ -120,7 +120,7 @@ public class BusinessDocumentPO extends BaseVOEntity{
private Integer payStatus;
@ApiModelProperty("付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTime;
@@ -128,7 +128,7 @@ public class BusinessDocumentPO extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -167,7 +167,7 @@ public class BusinessDocumentPO extends BaseVOEntity{
private BigDecimal commissionRate;
@ApiModelProperty("货主付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTimeShipper;
@@ -176,4 +176,4 @@ public class BusinessDocumentPO extends BaseVOEntity{
@ApiModelProperty(value = "合单主单单号(单据类型为2 不能为空)")
private String mainOrderNumber;
}
}
@@ -129,7 +129,7 @@ public class BusinessDocumentDO extends BaseVOEntity{
private Integer payStatus;
@ApiModelProperty("付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTime;
@@ -137,7 +137,7 @@ public class BusinessDocumentDO extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -209,7 +209,7 @@ public class BusinessDocumentDO extends BaseVOEntity{
private BigDecimal commissionRate;
@ApiModelProperty("货主付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTimeShipper;
@@ -218,4 +218,4 @@ public class BusinessDocumentDO extends BaseVOEntity{
@ApiModelProperty(value = "合单主单单号(单据类型为2 不能为空)")
private String mainOrderNumber;
}
}
@@ -125,12 +125,12 @@ public class BusinessDocumentDetali extends BaseVOEntity{
// private Integer payStatusShipper;
// @ApiModelProperty("付款时间")
// @JsonFormat(pattern = "yyyy-MM-dd")
// @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
// @Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
// private Date payTime;
//
// @ApiModelProperty("货主付款时间")
// @JsonFormat(pattern = "yyyy-MM-dd")
// @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
// @Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
// private Date payTimeShipper;
@@ -170,4 +170,4 @@ public class BusinessDocumentDetali extends BaseVOEntity{
@ApiModelProperty("司机姓名")
private String driver;
}
}
@@ -113,11 +113,11 @@ public class BusinessDocumentDetaliPO extends BaseVOEntity{
private Integer payStatusShipper;
@ApiModelProperty("付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTime;
@ApiModelProperty("货主付款时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "付款时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date payTimeShipper;
@@ -126,4 +126,4 @@ public class BusinessDocumentDetaliPO extends BaseVOEntity{
@ApiModelProperty("油卡号")
private String fuelCardNumber;
}
}
@@ -80,12 +80,12 @@ public class Reconciliation extends BaseVOEntity{
private String waybillSourceName;
@ApiModelProperty("对账起始日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账起始日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationStart;
@ApiModelProperty("对账结束日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账结束日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationEnd;
@@ -169,7 +169,7 @@ public class Reconciliation extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -86,12 +86,12 @@ public class ReconciliationPO extends BaseVOEntity{
private String waybillSourceName;
@ApiModelProperty("对账起始日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账起始日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationStart;
@ApiModelProperty("对账结束日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账结束日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationEnd;
@@ -177,7 +177,7 @@ public class ReconciliationPO extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -98,12 +98,12 @@ public class ReconciliationDO extends BaseVOEntity{
private String waybillSourceName;
@ApiModelProperty("对账起始日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账起始日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationStart;
@ApiModelProperty("对账结束日")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "对账结束日", width = 30, dateFormat = "yyyy-MM-dd")
private Date reconciliationEnd;
@@ -199,7 +199,7 @@ public class ReconciliationDO extends BaseVOEntity{
private Integer waybillVerifyFlag;
@ApiModelProperty("标记核实时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "标记核实时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date waybillVerifyTime;
@@ -215,27 +215,27 @@ public class ReconciliationDO extends BaseVOEntity{
private Long invoiceInfoId;
@ApiModelProperty("核销时间开始")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "核销时间开始", width = 30, dateFormat = "yyyy-MM-dd")
private Date collectionTimeStart;
@ApiModelProperty("核销时间结束")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "核销时间结束", width = 30, dateFormat = "yyyy-MM-dd")
private Date collectionTimeEnd;
@ApiModelProperty("创建时间开始")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "创建时间开始", width = 30, dateFormat = "yyyy-MM-dd")
private String createTimeStart;
@ApiModelProperty("创建时间结束")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "创建时间结束", width = 30, dateFormat = "yyyy-MM-dd")
private String createTimeEnd;
@ApiModelProperty("审核时间开始")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "审核时间开始", width = 30, dateFormat = "yyyy-MM-dd")
private Date authTimeStart;
@ApiModelProperty("审核时间结束")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "审核时间结束", width = 30, dateFormat = "yyyy-MM-dd")
private Date authTimeEnd;
@@ -47,7 +47,7 @@ public class WithdrawApplication extends BaseVOEntity{
private String applicantLicenseNumber;
@ApiModelProperty("申请时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date applyTime;
@@ -84,7 +84,7 @@ public class WithdrawApplication extends BaseVOEntity{
private String bindingPhone;
@ApiModelProperty("转账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "转账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date transferTime;
@@ -97,7 +97,7 @@ public class WithdrawApplication extends BaseVOEntity{
private String remark;
@ApiModelProperty("到账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "到账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date arriveAccountTime;
@@ -150,4 +150,4 @@ public class WithdrawApplication extends BaseVOEntity{
private String organizationName;
}
}
@@ -46,7 +46,7 @@ public class WithdrawApplicationPO extends BaseVOEntity{
private String applicantLicenseNumber;
@ApiModelProperty("申请时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date applyTime;
@@ -83,7 +83,7 @@ public class WithdrawApplicationPO extends BaseVOEntity{
private String bindingPhone;
@ApiModelProperty("转账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "转账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date transferTime;
@@ -96,7 +96,7 @@ public class WithdrawApplicationPO extends BaseVOEntity{
private String remark;
@ApiModelProperty("到账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "到账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date arriveAccountTime;
@@ -150,4 +150,4 @@ public class WithdrawApplicationPO extends BaseVOEntity{
}
}
@@ -46,7 +46,7 @@ public class WithdrawApplicationDO extends BaseVOEntity{
private String applicantLicenseNumber;
@ApiModelProperty("申请时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date applyTime;
@@ -83,7 +83,7 @@ public class WithdrawApplicationDO extends BaseVOEntity{
private String bindingPhone;
@ApiModelProperty("转账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "转账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date transferTime;
@@ -96,7 +96,7 @@ public class WithdrawApplicationDO extends BaseVOEntity{
private String remark;
@ApiModelProperty("到账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "到账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date arriveAccountTime;
@@ -153,4 +153,4 @@ public class WithdrawApplicationDO extends BaseVOEntity{
@ApiModelProperty(name = "权限菜单ID")
private Long permissionMenuId;
}
}
@@ -48,7 +48,7 @@ public class WithdrawApplicationDTO extends BaseVOEntity{
private String applicantLicenseNumber;
@ApiModelProperty("申请时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date applyTime;
@@ -85,7 +85,7 @@ public class WithdrawApplicationDTO extends BaseVOEntity{
private String bindingPhone;
@ApiModelProperty("转账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "转账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date transferTime;
@@ -98,7 +98,7 @@ public class WithdrawApplicationDTO extends BaseVOEntity{
private String remark;
@ApiModelProperty("到账时间")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@Excel(name = "到账时间", width = 30, dateFormat = "yyyy-MM-dd")
private Date arriveAccountTime;
@@ -159,4 +159,4 @@ public class WithdrawApplicationDTO extends BaseVOEntity{
@ApiModelProperty(name = "权限菜单ID")
private Long permissionMenuId;
}
}