1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <?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.ruoyi.other.mapper.GoodsEvaluateMapper">
|
| <select id="getGoodsEvaluateOne" resultType="com.ruoyi.other.api.domain.GoodsEvaluate">
| SELECT
| *
| FROM
| t_goods_evaluate
| WHERE
| goods_id = #{goodsId}
| AND del_flag = 0
| and status=2
| and comment !=''
| ORDER BY
| grade DESC, create_time DESC
| LIMIT 1;
| </select>
| </mapper>
|
|