| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.stylefeng.guns.modular.system.controller.resp.TEvaluateResp; |
| | | import com.stylefeng.guns.modular.system.model.TEvaluate; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import org.springframework.ui.Model; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface ITEvaluateService extends IService<TEvaluate> { |
| | | |
| | | /** |
| | | * 查询分页列表 |
| | | * @param createTime 评价时间 |
| | | * @param userName 评论用户名 |
| | | * @param driverName 评论司机名 |
| | | * @param orderType 订单类型 |
| | | * @param score 评价分数 |
| | | * @return |
| | | */ |
| | | List<TEvaluateResp> selectPageList(String createTime, String userName, String driverName, Integer orderType, Integer score); |
| | | |
| | | /** |
| | | * 跳转详情页面 |
| | | * @param evaluateId |
| | | * @param model |
| | | */ |
| | | void evaluateDetail(Integer evaluateId, Model model); |
| | | } |