mobilebroken/nflg-mobilebroken-repository/src/main/resources/mapper/DictionaryItemTranslateMapp...

13 lines
591 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nflg.mobilebroken.repository.mapper.DictionaryItemTranslateMapper">
<select id="getListByDictionaryItemId"
resultType="com.nflg.mobilebroken.common.pojo.vo.DictionaryItemTranslateVO">
SELECT t.id,l.`code`,l.`name`,t.`value`
FROM dictionary_item_translate t
LEFT JOIN language l ON t.language_code=l.`code`
WHERE t.dictionary_item_id=#{id}
</select>
</mapper>