| | |
| | | where lab_title = #{title} |
| | | </select> |
| | | |
| | | |
| | | <select id="listByTitles" parameterType="java.util.List" resultMap="ResultMap"> |
| | | select * from yeshi_ec_label |
| | | where lab_title in <foreach collection="list" item="item" open="(" separator="," close=")">#{item}</foreach> |
| | | </select> |
| | | |
| | | |
| | | <select id="getByTitle" resultMap="ResultMap"> |
| | | select * from yeshi_ec_label |
| | | WHERE lab_title = #{title} |
| | | limit 1 |
| | | </select> |
| | | |
| | | <!-- 查询商品标 签候选项 --> |
| | | <select id="queryGoodsCandidate" resultMap="BaseResultMap"> |
| | | SELECT <include refid="Base_Column_List" /> FROM `yeshi_ec_label` |