From 9509af69aff71aeb1f3b62f766e124d291c3f374 Mon Sep 17 00:00:00 2001 From: liulin <lin.liu@aliyun.com> Date: 星期二, 30 七月 2024 00:07:04 +0800 Subject: [PATCH] 适配mybatis-plus --- src/main/java/com/lunhan/xxx/repository/vo/TestInfoVO.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/lunhan/xxx/repository/vo/TestInfoVO.java b/src/main/java/com/lunhan/xxx/repository/vo/TestInfoVO.java index 7cb2429..e60ff2b 100644 --- a/src/main/java/com/lunhan/xxx/repository/vo/TestInfoVO.java +++ b/src/main/java/com/lunhan/xxx/repository/vo/TestInfoVO.java @@ -18,9 +18,9 @@ @Override public String getUpdateTimeView() { - if (Objects.isNull(this.getDataChangeLastTime())) { + if (Objects.isNull(this.getUpdateTime())) { return ""; } - return LocalDateTimeUtil.toFormatFullString(this.getDataChangeLastTime()); + return LocalDateTimeUtil.toFormatFullString(this.getUpdateTime()); } } -- Gitblit v1.9.3