|
@ -4,6 +4,8 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
|
import com.yxt.anrui.flowable.api.flow.Flowable; |
|
|
import com.yxt.anrui.flowable.api.flow.Flowable; |
|
|
import com.yxt.anrui.flowable.api.flow2.FlowableMessageVo; |
|
|
import com.yxt.anrui.flowable.api.flow2.FlowableMessageVo; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
import org.springframework.security.core.parameters.P; |
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
|
|
|
|
|
@ -15,4 +17,6 @@ import java.util.List; |
|
|
@Mapper |
|
|
@Mapper |
|
|
public interface FlowMapper extends BaseMapper<Flowable> { |
|
|
public interface FlowMapper extends BaseMapper<Flowable> { |
|
|
List<FlowableMessageVo> getMessageList(int minutes); |
|
|
List<FlowableMessageVo> getMessageList(int minutes); |
|
|
|
|
|
|
|
|
|
|
|
FlowableMessageVo getMessageReminder(@Param("proDefId") String proDefId, @Param("proInstId") String proInstId); |
|
|
} |
|
|
} |
|
|