1
昨天 d11eff090fb94927fa98a594b6c7ab4d3f04f3cd
1
2
3
4
5
6
7
8
9
10
11
12
package com.vincent.rsf.server.system.service.impl;
 
import com.vincent.rsf.server.system.mapper.FlowStepTemplateMapper;
import com.vincent.rsf.server.system.entity.FlowStepTemplate;
import com.vincent.rsf.server.system.service.FlowStepTemplateService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
@Service("flowStepTemplateService")
public class FlowStepTemplateServiceImpl extends ServiceImpl<FlowStepTemplateMapper, FlowStepTemplate> implements FlowStepTemplateService {
 
}