修复时间戳与数据表入库时间差1秒问题,开发重新计算接口,交换机详情增加业务代码,业务名称,修复各个表业务信息不匹配问题
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user