18 lines
407 B
Plaintext
18 lines
407 B
Plaintext
|
|
package com.bonus.mcu.service;
|
||
|
|
|
||
|
|
import com.bonus.mcu.beans.BallBean;
|
||
|
|
import com.bonus.mcu.beans.McuBean;
|
||
|
|
import com.bonus.mcu.beans.TreeNode;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface McuService {
|
||
|
|
|
||
|
|
//<!-- 获取所有在线的球机信息-->
|
||
|
|
List<McuBean> getBallsMessage(McuBean bean);
|
||
|
|
|
||
|
|
List<TreeNode>getBallList(TreeNode bean);
|
||
|
|
|
||
|
|
List<BallBean> getinfoBysxt(BallBean bean);
|
||
|
|
}
|