//Source file: c:/work/board/Notice.java
/**********************************************
/* ÇöÀç³¯Â¥ 0-03-07 2:25¿ÀÈÄ
/* ÀÛ¼ºÀÚ : Á¤À¯Áø
/* ¼³¸í: EJBObject interface Á¤ÀÇ 
***********************************************/
package board;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;


public interface Notice extends EJBObject {
	
	/**
	   @roseuid 38C47A3C01C5
	 */
	public int getID() throws RemoteException;
	
	/**
	   @roseuid 38C47A600285
	 */
	public void setID(int id) throws RemoteException;
	
	/**
	   @roseuid 38C47AA40305
	 */
	public void setType(byte type) throws RemoteException;
	/**
	   @roseuid 38C47AC9015A
	 */
	public byte getType() throws RemoteException;
	/**
	   @roseuid 38C47B0A017B
	 */
	public String getUpDate() throws RemoteException;
	/**
	   @roseuid 38C47B690330
	 */
	public String getStartDate() throws RemoteException;
	
	/**
	   @roseuid 38C47B7F0101
	 */
	public String getEndDate() throws RemoteException;
	/**
	   @roseuid 38C47B940378
	 */
	public void setCount(int count) throws RemoteException;
	
	/**
	   @roseuid 38C47BAE023F
	 */
	public int getCount() throws RemoteException;
	
	/**
	   @roseuid 38C47C9B02E0
	 */
	public void setTitle(String title) throws RemoteException;
	
	/**
	   @roseuid 38C47CBB0033
	 */
	public String getTitle() throws RemoteException;
	/**
	   @roseuid 38C47CD0008E
	 */
	public void setContent(String content) throws RemoteException;
	
	/**
	   @roseuid 38C47CEF01C9
	 */
	public String getContent() throws RemoteException;
	/**
	   @roseuid 38C47D0800D4
	 */
	public TNotice getNotice() throws RemoteException;
	
	/**
	   @roseuid 38C47D7B02A6
	 */
	public void setNotice(TNotice tNotice) throws RemoteException;
}