【新增】数据国际化支持

This commit is contained in:
2025-10-28 14:40:22 +08:00
parent e264cb15b9
commit 577b37b768
7 changed files with 21 additions and 7 deletions

View File

@@ -24,13 +24,12 @@
left join app_course_category cc on cc.id = ccr.category_id
</sql>
<!-- 分页查询 -->
<select id="pageList" resultMap="VOResultMap">
<include refid="selectVOSql"/>
<where>
c.status = 1
and c.lang = #{lang}
<if test="categoryId != null and categoryId != 0">
AND cc.id = #{categoryId}
</if>