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

📄 commonservice.java

📁 新技术论坛系统 v1.0 前后台管理的初始用户名 : admin 密码 123456
💻 JAVA
字号:
package com.ntsky.bbs.service;

import java.util.List;

import com.ntsky.bbs.domain.Common;
import com.ntsky.bbs.exception.ServiceException;

public interface CommonService extends BaseService{
	
	/**
	 * 查找头像类别
	 * @return List 头像信息
	 */
	public List getFaceTypes() throws ServiceException ;

	/**
	 * 查找帮助类别
	 */
	public List getHelpTypes() throws ServiceException ;
	
	/**
	 * 列表全部头像信息
	 * @return
	 * @throws ServiceException
	 */
	public List getAllFaces() throws ServiceException;
	
	/**
	 * 列表全部帮助信息
	 * @return
	 * @throws ServiceException
	 */
	public List getAllHelps() throws ServiceException;
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -