Skip to content

Commit f5dabe1

Browse files
committed
fix: Modify mapper xml
1 parent 6c08dcb commit f5dabe1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

base/src/main/resources/mappers/PageTemplateMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<if test="createdTime!=null">
114114
created_time = #{createdTime},
115115
</if>
116-
<if test="lastUpdatedTime!=null'">
116+
<if test="lastUpdatedTime!=null">
117117
last_updated_time = #{lastUpdatedTime},
118118
</if>
119119
<if test="tenantId!=null and tenantId!=''">

base/src/main/resources/mappers/TenantMapper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<if test="lastUpdatedBy!=null and lastUpdatedBy!=''">
2929
AND last_updated_by = #{lastUpdatedBy}
3030
</if>
31-
<if test="createdTime!=null'">
31+
<if test="createdTime!=null">
3232
AND created_time = #{createdTime}
3333
</if>
3434
<if test="lastUpdatedTime!=null">

0 commit comments

Comments
 (0)