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

📄 inoticegameresultservice.java

📁 学习dwr+struts2+spring进行开发的好例子
💻 JAVA
字号:
package com.szhelper.lotteryWeb.service;

import java.util.List;

import com.szhelper.lotteryWeb.dao.INoticeCommentDao;
import com.szhelper.lotteryWeb.dao.INoticeGameResultDao;
import com.szhelper.lotteryWeb.exception.NoticeCommentExistsException;
import com.szhelper.lotteryWeb.model.NoticeComment;
import com.szhelper.lotteryWeb.model.NoticeGameResult;
import com.szhelper.lotteryWeb.util.PageBean;

public interface INoticeGameResultService {
	/**
	 * Convenience method for testing - allows you to mock the DAO and set it on
	 * an interface.
	 * 
	 * @param noticeCommentDao
	 *            the NoticeCommentDao implementation to use
	 */
	void setNoticeGameResultDao(INoticeGameResultDao noticeGameResultDao);

	/**
	 * Retrieves a NoticeGameResult by NoticeGameResultId. An exception is thrown if
	 * NoticeGameResult not found
	 * 
	 * @param NoticeGameResultId
	 *            the identifier for the NoticeGameResult
	 * @return NoticeGameResult
	 */
	NoticeGameResult getNoticeGameResultByKey(int noticeGameResultId);

	/**
	 * Finds a NoticeGameResult by their NoticeGameResultname.
	 * 
	 * @param NoticeGameResultname
	 *            the NoticeGameResult's NoticeGameResultname used to login
	 * @return NoticeGameResult a populated NoticeGameResult object
	 * @throws
	 *         org.acegisecurity.NoticeGameResultdetails.NoticeGameResultnameNotFoundException
	 *         exception thrown when NoticeGameResult not found
	 */
	/*
	 * NoticeGameResult getNoticeGameResultByNoticeGameResultname(String
	 * NoticeGameResultname) throws NoticeGameResultnameNotFoundException;
	 */
	/**
	 * Retrieves a list of NoticeGameResults, filtering with parameters on a
	 * NoticeGameResult object
	 * 
	 * @return List
	 */
	List getNoticeGameResultList();

	/**
	 * Saves a NoticeGameResult's information.
	 * 
	 * @param NoticeGameResult
	 *            the NoticeGameResult's information
	 * @throws NoticeGameResultExistsException
	 *             thrown when NoticeGameResult already exists
	 * @return NoticeGameResult the updated NoticeGameResult object
	 */
	boolean saveNoticeGameResult(NoticeGameResult noticeGameResult);

	boolean updateNoticeGameResult(NoticeGameResult noticeGameResult);

	/**
	 * Deletes a NoticeGameResult from the database by their NoticeGameResultId
	 * 
	 * @param NoticeGameResultId
	 *            the NoticeGameResult's id
	 */
	boolean deleteNoticeGameResult(int noticeGameResultId);
    
    List getNoticeGameResultPageList(PageBean page);
}

⌨️ 快捷键说明

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