日期时区问题修改;
This commit is contained in:
@@ -41,7 +41,7 @@ public class SysCompanyApp extends BaseEntity
|
||||
private String appVersion;
|
||||
|
||||
/** 上架时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "上架时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date createDatetime;
|
||||
|
||||
@@ -149,4 +149,4 @@ public class SysCompanyApp extends BaseEntity
|
||||
.append("delFlag", getDelFlag())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -44,12 +44,12 @@ public class SysEquipmentGps extends BaseEntity
|
||||
private Integer delFlag;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date createDatetime;
|
||||
|
||||
/** 修改时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date updateDatetime;
|
||||
|
||||
@@ -149,4 +149,4 @@ public class SysEquipmentGps extends BaseEntity
|
||||
.append("updateDatetime", getUpdateDatetime())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -44,12 +44,12 @@ public class SysEquipmentPrinter extends BaseEntity
|
||||
private Integer delFlag;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date createDate;
|
||||
|
||||
/** 更新时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
@Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date updateDate;
|
||||
|
||||
@@ -149,4 +149,4 @@ public class SysEquipmentPrinter extends BaseEntity
|
||||
.append("updateDate", getUpdateDate())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -37,14 +37,14 @@ public class SysMsgCenter extends BaseEntity
|
||||
private String createBy;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date createTime;
|
||||
|
||||
/** 更新人 */
|
||||
private String updateBy;
|
||||
|
||||
/** 更新时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date updateTime;
|
||||
|
||||
/** 状态 */
|
||||
@@ -58,4 +58,4 @@ public class SysMsgCenter extends BaseEntity
|
||||
private String msgType;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -37,7 +37,7 @@ public class SysMsgPush extends BaseEntity
|
||||
private String createBy;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date createTime;
|
||||
|
||||
/** 删除状态 */
|
||||
@@ -47,7 +47,7 @@ public class SysMsgPush extends BaseEntity
|
||||
private String updateBy;
|
||||
|
||||
/** 更新时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date updateTime;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -37,11 +37,11 @@ public class SysMsgPushDTO extends BaseEntity
|
||||
private String createBy;
|
||||
|
||||
/** 创建时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date createTime;
|
||||
|
||||
/** 推送时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date pushTime;
|
||||
|
||||
/** 删除状态 */
|
||||
@@ -51,21 +51,21 @@ public class SysMsgPushDTO extends BaseEntity
|
||||
private String updateBy;
|
||||
|
||||
/** 更新时间 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date updateTime;
|
||||
|
||||
/* 创建时间搜索 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date startCreateTime;
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date endCreateTime;
|
||||
|
||||
/* 推送时间搜索 */
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date startPushTime;
|
||||
@JsonFormat(pattern = "YYYY-MM-dd")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
||||
private Date endPushTime;
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user