10 lines
187 B
Java
10 lines
187 B
Java
package com.tongran.agent.client.service;
|
|
|
|
import com.tongran.agent.client.core.vo.SystemVO;
|
|
|
|
public interface SystemService {
|
|
SystemVO get();
|
|
|
|
String otherSystem(String type);
|
|
}
|