abractannounce.java

来自「网上购物系统」· Java 代码 · 共 72 行

JAVA
72
字号
package tarena.data;

public class AbractAnnounce {

	/**
	 * 公告颜色
	 */
	protected Integer id;

	/**
	 * 公告标题
	 */
	protected String title;

	/**
	 * 公告颜色
	 */
	protected String titlecolor;

	/**
	 * 公告类型
	 */
	protected String atype;

	/**
	 * @roseuid 49082347037A
	 */
	public AbractAnnounce() {

	}

	public AbractAnnounce(Integer id,String atype,String title,String titlecolor) {
		this.id = id;
		this.atype = atype;
		this.title = title;
		this.titlecolor = titlecolor;
	}
	
	public String getAtype() {
		return atype;
	}

	public void setAtype(String atype) {
		this.atype = atype;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getTitlecolor() {
		return titlecolor;
	}

	public void setTitlecolor(String titlecolor) {
		this.titlecolor = titlecolor;
	}

}

⌨️ 快捷键说明

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