zhou zhou
1 天以前 287a666e1b2bb155e86aa88ebace201d1e8a51f6
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);
 
}