notice.java

来自「新闻发布系统」· Java 代码 · 共 66 行

JAVA
66
字号
/*
 * Notice.java
 *
 * Created on 2007年3月18日, 下午12:02
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package News.Common;

/**
 *
 * @author Owner
 */
public class Notice implements java.io.Serializable{
    private String id;
    private String message;
    private String time;
    private String logoURL;
    /** Creates a new instance of Notice */
    public Notice() {
    }
    
    public void setLogoURL(String s)
    {
        logoURL=s;
    }
    
    public String getLogoURL()
    {
        return logoURL;
    }
    
    public void setId(String i)
    {
        id=i;
    }
    
    public String getId()
    {
        return id;
    }
    
    public void setMessage(String m)
    {
        message=m;
    }
    
    public String getMessage()
    {
        return message;
    }
    
    public void setTime(String t)
    {
            time=t;
    }
    
    public String getTime()
    {
        return time;
    }
    
}

⌨️ 快捷键说明

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