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);
|
}
|