📄 bulletionservice.java
字号:
package org.wiely.service;
import org.wiely.vo.Bulletion;
public interface BulletionService {
/**
*
* @return String
* @throws Exception
*/
public String showMess() throws Exception;
/**
*
* @return boolean
* @throws Exception
*/
public boolean isMaxScore(int adminid) throws Exception;
/**
*
* @param bulletion
* @throws Exception
*/
public void updateBulletion(Bulletion bulletion) throws Exception;
/**
*
* @param adminid
* @return int
* @throws Exception
*/
public int queryIdByAdminid(int adminid) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -