1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
 
}