fix: 修复MySQL查询时间边界错误的问题

This commit is contained in:
junjun 2024-05-17 11:21:17 +08:00
parent 8a918ae9f9
commit 80c9761b61

View File

@ -1450,7 +1450,7 @@ public class MysqlQueryProvider extends QueryProvider {
if (request.getDatasetTableField().getDeType() == 1) {
if (request.getDatasetTableField().getDeExtractType() == 1) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String startTime = simpleDateFormat.format(new Date(Long.parseLong(value.get(0)) - 1000));
String startTime = simpleDateFormat.format(new Date(Long.parseLong(value.get(0))));
String endTime = simpleDateFormat.format(new Date(Long.parseLong(value.get(1))));
whereValue = String.format(MySQLConstants.WHERE_BETWEEN, startTime, endTime);
} else {