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);
|
|
}
|