Commit d5c3e58d by guominglei

修改引用代码

parent 70a023f7
...@@ -5,5 +5,5 @@ package com.byit.service; ...@@ -5,5 +5,5 @@ package com.byit.service;
* @author: gml * @author: gml
* @create: 2019-12-24 10:38 * @create: 2019-12-24 10:38
*/ */
public interface JobFlowNodeService { public interface NodeService {
} }
package com.byit.service.impl; package com.byit.service.impl;
import com.byit.mapper.JobFlowNodeMapper; import com.byit.mapper.NodeMapper;
import com.byit.service.JobFlowNodeService; import com.byit.service.NodeService;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource; import javax.annotation.Resource;
...@@ -12,9 +12,9 @@ import javax.annotation.Resource; ...@@ -12,9 +12,9 @@ import javax.annotation.Resource;
* @create: 2019-12-24 10:39 * @create: 2019-12-24 10:39
*/ */
@Service @Service
public class JobFlowNodeServiceImpl implements JobFlowNodeService { public class NodeServiceImpl implements NodeService {
@Resource @Resource
private JobFlowNodeMapper jobFlowNodeMapper; private NodeMapper nodeMapper;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment