📄 abractannounce.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -