| | |
| | | import com.ruoyi.order.vo.OrderEvaluateVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @return 分页列表 |
| | | */ |
| | | Page<EvaluatePageVO> evaluateList(@Param("userId") Integer userId, Page<EvaluatePageVO> page); |
| | | Page<EvaluatePageVO> evaluateList1(@Param("cityList") List<String> cityList,@Param("userId") Integer userId, Page<EvaluatePageVO> page); |
| | | Page<EvaluatePageVO> evaluateList1(@Param("cityList") List<String> cityList, @Param("userId") Integer userId, @Param("siteIds") List<String> siteIds, Page<EvaluatePageVO> page); |
| | | |
| | | /** |
| | | * 订单与评价列表 |