20 lines
292 B
Java
20 lines
292 B
Java
package com.nis.web.service.configuration;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* 隧道协议相关配置事务类
|
|
* @author dell
|
|
*
|
|
*/
|
|
@Service
|
|
public class TunnelCfgService {
|
|
|
|
public List getL2tpList(){
|
|
|
|
return null;
|
|
}
|
|
}
|