📄 newsattribute.java
字号:
/*
* Created on 2005-12-2
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.mycompany.news.dto;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class NewsAttribute {
private Long newsAttributeId;
private Long entityId;
private String newsAttrName;
private String newsAttrType;
private String newsAttrValue;
public Long getEntityId() {
return entityId;
}
public void setEntityId(Long entityId) {
this.entityId = entityId;
}
public Long getNewsAttributeId() {
return newsAttributeId;
}
public void setNewsAttributeId(Long newsAttributeId) {
this.newsAttributeId = newsAttributeId;
}
public String getNewsAttrName() {
return newsAttrName;
}
public void setNewsAttrName(String newsAttrName) {
this.newsAttrName = newsAttrName;
}
public String getNewsAttrType() {
return newsAttrType;
}
public void setNewsAttrType(String newsAttrType) {
this.newsAttrType = newsAttrType;
}
public String getNewsAttrValue() {
return newsAttrValue;
}
public void setNewsAttrValue(String newsAttrValue) {
this.newsAttrValue = newsAttrValue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -