2026-01-17
1.添加Md5工具
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package cn.lailab.toolbox.service.impl;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import cn.lailab.toolbox.beans.tools.ToolMd5;
|
||||
import cn.lailab.toolbox.mapper.ToolMd5Mapper;
|
||||
import cn.lailab.toolbox.service.ToolMd5Service;
|
||||
|
||||
public class ToolMd5ServiceImpl implements ToolMd5Service {
|
||||
|
||||
@Autowired
|
||||
ToolMd5Mapper toolMd5Mapper;
|
||||
|
||||
@Override
|
||||
public int insertToolMd5(ToolMd5 toolMd5) {
|
||||
return toolMd5Mapper.insertToolMd5(toolMd5);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ToolMd5 selectToolMd5(ToolMd5 toolMd5) {
|
||||
return toolMd5Mapper.selectToolMd5(toolMd5);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user