From 8626ca59fbafc67bf87183828e61d914ba99c333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B1=B1=E5=B4=A9=E5=B2=A9=E9=98=BB?= <8522461+HappyComputer@user.noreply.gitee.com> Date: Thu, 21 Nov 2024 09:56:00 +0000 Subject: [PATCH] =?UTF-8?q?update=20yudao-module-infra/yudao-module-infra-?= =?UTF-8?q?biz/src/main/resources/codegen/java/dal/do.vm.=20DO=E6=94=AF?= =?UTF-8?q?=E6=8C=81LocalDate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 山崩岩阻 <8522461+HappyComputer@user.noreply.gitee.com> --- .../src/main/resources/codegen/java/dal/do.vm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm index b019d6e12f..dc56c0b72a 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/do.vm @@ -9,6 +9,9 @@ import java.math.BigDecimal; #if (${column.javaType} == "LocalDateTime") import java.time.LocalDateTime; #end +#if (${column.javaType} == "LocalDate") +import java.time.LocalDate; +#end #end import com.baomidou.mybatisplus.annotation.*; import ${BaseDOClassName};