| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | 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: 流程业务扩展表 |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface FlowMyBusinessMapper extends BaseMapper<FlowMyBusiness> { |
| | | /** |
| | | * 流程-我的已办 |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | List<FlowTaskDto> ListMyBusiness(@Param("dto") FlowMyBusinessDto dto); |
| | | |
| | | /** |
| | | * 流程总台账 |