zhou zhou
昨天 1d0ab9996661fdc66037870d4b98037f2dfa079a
1
2
3
4
5
6
7
8
9
10
package com.vincent.rsf.server.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vincent.rsf.server.system.entity.FlowStepInstance;
 
public interface FlowStepInstanceService extends IService<FlowStepInstance> {
 
    boolean jumpCurrent(Long id);
 
}