| | |
| | | package com.panzhihua.sangeshenbian.dao; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.sangeshenbian.model.entity.Complaint; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.sangeshenbian.model.query.ComplaintQuery; |
| | | import com.panzhihua.sangeshenbian.model.vo.ComplaintVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <p> |
| | | * 问题报告表 Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author |
| | | * @author |
| | | * @since 2025-02-22 |
| | | */ |
| | | public interface ComplaintMapper extends BaseMapper<Complaint> { |
| | | /** |
| | | * 工单列表 |
| | | * @param page |
| | | * @param query |
| | | * @param targetId |
| | | * @param isSuperior |
| | | * @return |
| | | */ |
| | | Page<ComplaintVO> selectComplaintPage(Page<ComplaintVO> page, @Param("query") ComplaintQuery query, @Param("targetId") String targetId, @Param("isSuperior") Integer isSuperior); |
| | | |
| | | /** |
| | | * 工单详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ComplaintVO getDetail(Long id); |
| | | } |