package com.vincent.rsf.server.system.service.impl;
|
|
import com.vincent.rsf.server.system.mapper.FlowStepLogMapper;
|
import com.vincent.rsf.server.system.entity.FlowStepLog;
|
import com.vincent.rsf.server.system.service.FlowStepLogService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
@Service("flowStepLogService")
|
public class FlowStepLogServiceImpl extends ServiceImpl<FlowStepLogMapper, FlowStepLog> implements FlowStepLogService {
|
|
}
|