提交代码

dev_xds
姜玉琦 2024-01-14 17:17:24 +08:00
parent 567fd3f237
commit c8230c6b54
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class LabourSignetVo {
public Boolean checkTimestamp() { public Boolean checkTimestamp() {
boolean timestampFlag = false; boolean timestampFlag = false;
long timePoor = Math.abs(timestamp - System.currentTimeMillis()); long timePoor = Math.abs(timestamp - System.currentTimeMillis());
if (timePoor < 10000 * 60 * 3) { if (timePoor < 1000 * 60 * 30) {
timestampFlag = true; timestampFlag = true;
} }
return timestampFlag; return timestampFlag;