项目初始化
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.DockerContainerInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 容器信息采集表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
public interface DockerContainerInfoService extends IService<DockerContainerInfo> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.DockerHost;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 容器主机配置表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
public interface DockerHostService extends IService<DockerHost> {
|
||||
|
||||
}
|
||||
16
src/main/java/com/mini/capi/biz/service/SshInfoService.java
Normal file
16
src/main/java/com/mini/capi/biz/service/SshInfoService.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.SshInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* SSH 服务器信息表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
public interface SshInfoService extends IService<SshInfo> {
|
||||
|
||||
}
|
||||
16
src/main/java/com/mini/capi/biz/service/SshUserService.java
Normal file
16
src/main/java/com/mini/capi/biz/service/SshUserService.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package com.mini.capi.biz.service;
|
||||
|
||||
import com.mini.capi.biz.domain.SshUser;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户密码表 服务类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
public interface SshUserService extends IService<SshUser> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.DockerContainerInfo;
|
||||
import com.mini.capi.biz.mapper.DockerContainerInfoMapper;
|
||||
import com.mini.capi.biz.service.DockerContainerInfoService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 容器信息采集表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
@Service
|
||||
public class DockerContainerInfoServiceImpl extends ServiceImpl<DockerContainerInfoMapper, DockerContainerInfo> implements DockerContainerInfoService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.DockerHost;
|
||||
import com.mini.capi.biz.mapper.DockerHostMapper;
|
||||
import com.mini.capi.biz.service.DockerHostService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 容器主机配置表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
@Service
|
||||
public class DockerHostServiceImpl extends ServiceImpl<DockerHostMapper, DockerHost> implements DockerHostService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.SshInfo;
|
||||
import com.mini.capi.biz.mapper.SshInfoMapper;
|
||||
import com.mini.capi.biz.service.SshInfoService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* SSH 服务器信息表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
@Service
|
||||
public class SshInfoServiceImpl extends ServiceImpl<SshInfoMapper, SshInfo> implements SshInfoService {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.mini.capi.biz.service.impl;
|
||||
|
||||
import com.mini.capi.biz.domain.SshUser;
|
||||
import com.mini.capi.biz.mapper.SshUserMapper;
|
||||
import com.mini.capi.biz.service.SshUserService;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 用户密码表 服务实现类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2025-08-23
|
||||
*/
|
||||
@Service
|
||||
public class SshUserServiceImpl extends ServiceImpl<SshUserMapper, SshUser> implements SshUserService {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user