zhou zhou
昨天 6331e9aa3f0ced66084bb41de3245162ff8ae806
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);
 
}