修复时间戳与数据表入库时间差1秒问题,开发重新计算接口,交换机详情增加业务代码,业务名称,修复各个表业务信息不匹配问题

This commit is contained in:
gaoyutao
2025-08-29 19:17:43 +08:00
parent ea6e65bfaf
commit 506fd1dcc1
13 changed files with 341 additions and 129 deletions

View File

@@ -49,7 +49,7 @@ public class BaseEntity implements Serializable
*/
private String[] properties;
/** 时间戳 */
private String timestamp;
private long timestamp;
/** 请求参数 */
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@@ -153,11 +153,11 @@ public class BaseEntity implements Serializable
this.params = params;
}
public String getTimestamp() {
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
}