puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.stylefeng.guns.modular.system.dao;
 
import com.stylefeng.guns.modular.system.controller.resp.TEvaluateResp;
import com.stylefeng.guns.modular.system.model.TEvaluate;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 订单评价 Mapper 接口
 * </p>
 *
 * @author stylefeng
 * @since 2023-02-27
 */
@Mapper
public interface TEvaluateMapper extends BaseMapper<TEvaluate> {
 
    /**
     * 查询评论列表
     * @param startTime 开始时间
     * @param endTime 结束时间
     * @param userName 评论用户名
     * @param driverName 评论司机名
     * @param orderType 订单类型
     * @param score 评价分数
     * @return
     */
    List<TEvaluateResp> selectPageList(@Param("startTime") String startTime,@Param("endTime") String endTime, @Param("userName")String userName,
                                       @Param("driverName")String driverName, @Param("orderType")Integer orderType, @Param("score")Integer score);
}