zhou zhou
昨天 88b3f09a702f8f8515af43bc14242ecca2a667db
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);
 
}