package com.ycl.mapper;
|
|
import com.ycl.domain.entity.ProcessLog;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ycl.domain.vo.ProcessLogVO;
|
import com.ycl.domain.query.ProcessLogQuery;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* 流程日志 Mapper 接口
|
*
|
* @author xp
|
* @since 2025-01-02
|
*/
|
@Mapper
|
public interface ProcessLogMapper extends BaseMapper<ProcessLog> {
|
|
/**
|
* id查找流程日志
|
* @param id
|
* @return
|
*/
|
ProcessLogVO getById(Long id);
|
|
/**
|
* 分页
|
*/
|
IPage getPage(IPage page, @Param("query") ProcessLogQuery query);
|
|
/**
|
* 获取流程推进日志
|
*
|
* @param query
|
* @return
|
*/
|
List<ProcessLogVO> projectProcessLogList(@Param("query") ProcessLogQuery query);
|
|
|
IPage projectProcessLogPage(IPage page, @Param("query") ProcessLogQuery query);
|
|
List<String> getAllHangup();
|
|
}
|