1
2
3
4
5
6
7
package com.vci.server;
 
public abstract class BaseService {
    
    public abstract String getServiceName();
 
}