⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bulletionservice.java

📁 有简单的网上书店需求及设计流程
💻 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 + -