¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.flowable.apithird.business.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.jeecg.modules.flowable.apithird.business.dto.FlowMyBusinessDto; |
| | | import org.jeecg.modules.flowable.apithird.business.entity.FlowMyBusiness; |
| | | import org.jeecg.modules.flowable.domain.dto.FlowTaskDto; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: æµç¨ä¸å¡æ©å±è¡¨ |
| | | * @Author: jeecg-boot |
| | | * @Date: 2021-11-25 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface FlowMyBusinessMapper extends BaseMapper<FlowMyBusiness> { |
| | | /** |
| | | * æµç¨-æçå·²å |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | List<FlowTaskDto> ListMyBusiness(@Param("dto") FlowMyBusinessDto dto); |
| | | |
| | | /** |
| | | * æµç¨æ»å°è´¦ |
| | | * @param flowMyBusinessDto |
| | | * @return |
| | | */ |
| | | IPage<FlowMyBusinessDto> PageList(@Param("page") Page page, @Param("flowMyBusinessDto") FlowMyBusinessDto flowMyBusinessDto); |
| | | |
| | | @Select("SELECT * FROM flow_my_business WITH (INDEX(idx_data_id)) \n" + |
| | | "WHERE data_id = #{dataId}") |
| | | FlowMyBusiness selectByDataId(String dataId); |
| | | } |