Compare commits

..

No commits in common. "d7f82950387d2f94000e8ecb4188ce16f478e7bc" and "442355700a016539ddb600870faa462646120bf4" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@
<select id="get" resultType="com.nflg.mobilebroken.common.pojo.vo.ProductHonorVO">
SELECT ph.id,YEAR(ph.obtaining_time) AS 'year',phi.title,phi.image
FROM product_honor ph
INNER JOIN product_honor_info phi ON phi.honor_id=ph.id AND phi.language_code=#{language}
LEFT JOIN product_honor_info phi ON phi.honor_id=ph.id AND phi.language_code=#{language}
WHERE ph.enable=1 AND ph.state=1
ORDER BY ph.obtaining_time DESC, ph.id DESC
</select>