1
15 分钟以前 672b2caa111caff71075705dc26395fc252f2f9e
1
2
3
4
5
6
7
8
9
10
package com.vincent.rsf.schedule.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vincent.rsf.schedule.system.entity.FlowStepInstance;
 
public interface FlowStepInstanceService extends IService<FlowStepInstance> {
 
    boolean jumpCurrent(Long id);
 
}