|
@@ -143,7 +143,7 @@ public class ThirdPartyServiceImpl implements ThirdPartyService {
|
|
|
if (secretEnum == SecretEnum.SECRET_ENUM_2) {
|
|
|
long targetTime = DateUtils.dateStrToTimestamp(date, "yyyy-MM-dd");
|
|
|
long limitTime = DateUtils.dateStrToTimestamp("2024-11-30", "yyyy-MM-dd");
|
|
|
- if (targetTime > limitTime) {
|
|
|
+ if (targetTime < limitTime) {
|
|
|
return CommonResponse.create(500, "数据不存在");
|
|
|
}
|
|
|
}
|