| | |
| | | package com.stylefeng.guns.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.stylefeng.guns.modular.system.controller.resp.TComplaintResp; |
| | | import com.stylefeng.guns.modular.system.model.TComplaint; |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 投诉管理 服务类 |
| | | * 投诉 服务类 |
| | | * </p> |
| | | * |
| | | * @author 吕雪 |
| | | * @since 2020-06-09 |
| | | * @author stylefeng |
| | | * @since 2023-03-02 |
| | | */ |
| | | public interface ITComplaintService extends IService<TComplaint> { |
| | | |
| | | /** |
| | | * 根据条件查询投诉列表 |
| | | * 获取列表 |
| | | * @param createTime |
| | | * @param userName |
| | | * @param userPhone |
| | | * @param driverPhone |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> getComplaintList(@Param("page") Page<Map<String, Object>> page, |
| | | @Param("roleType") Integer roleType, |
| | | @Param("nowUserId") Integer nowUserId, |
| | | @Param("beginTime") String beginTime, |
| | | @Param("endTime") String endTime, |
| | | @Param("userName") String userName, |
| | | @Param("userPhone") String userPhone, |
| | | @Param("driverPhone") String driverPhone, |
| | | @Param("isHandle") Integer isHandle); |
| | | List<TComplaintResp> getPageList(String createTime, String userName, String userPhone, String driverPhone, Integer state); |
| | | } |