Skip to content

Commit

Permalink
修改了显示的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xiran2018 committed Mar 18, 2020
1 parent 3267b4e commit e9972b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/admin/ru/own/www/mybatis/dao/CategoryMapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@


<select id="getAllCategoryWithMultilanguage" resultMap="category" parameterType="int">
SELECT category.category_id,category.category_father_id,category.is_father,categorymultilanguage.foreign_name as category_name FROM own.categorymultilanguage right join own.category on category.category_id = categorymultilanguage.category_id and lan_id = #{lanid};
SELECT category.category_id,category.category_father_id,category.is_father,categorymultilanguage.foreign_name as category_name FROM own.categorymultilanguage right join own.category on category.category_id = categorymultilanguage.category_id and lan_id = #{lanid} where category.is_show=1;
</select>

<select id="getSubCategoryID" resultType="int" parameterType="int">
Expand Down

0 comments on commit e9972b1

Please sign in to comment.