| | |
| | | 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; |
| | |
| | | */ |
| | | 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); |
| | | } |