chen.lin
昨天 a488088a18a9b8808bc57124681cee8c4ada7299
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);
 
}