bulletionservice.java

来自「有简单的网上书店需求及设计流程」· Java 代码 · 共 35 行

JAVA
35
字号
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 + =
减小字号Ctrl + -
显示快捷键?