package com.vci.ubcs.deploy.service;
|
|
import com.alibaba.nacos.shaded.com.google.protobuf.ServiceException;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.vci.ubcs.deploy.entity.DeployApps;
|
import com.vci.ubcs.deploy.vo.DeployAppsVO;
|
import org.apache.http.auth.AuthenticationException;
|
|
import javax.servlet.ServletRequest;
|
import java.util.List;
|
|
/**
|
* @author ludc
|
* @date 2024/1/7 19:54
|
*/
|
public interface IDeployAppsService extends IService<DeployApps> {
|
|
List<DeployAppsVO> getApplications(ServletRequest servletRequest) throws ServiceException;
|
|
}
|