?? positionrightsarea.java
字號:
package com.yuanchung.sales.model.admin.position;
/**
* PositionRightsArea entity.
*
* @author MyEclipse Persistence Tools
*/
public class PositionRightsArea implements java.io.Serializable {
// Fields
private Integer id;
private Integer positionRightsId;
private Integer treeviewId;
// Constructors
/** default constructor */
public PositionRightsArea() {
}
/** full constructor */
public PositionRightsArea(Integer positionRightsId, Integer treeviewId) {
this.positionRightsId = positionRightsId;
this.treeviewId = treeviewId;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getPositionRightsId() {
return this.positionRightsId;
}
public void setPositionRightsId(Integer positionRightsId) {
this.positionRightsId = positionRightsId;
}
public Integer getTreeviewId() {
return this.treeviewId;
}
public void setTreeviewId(Integer treeviewId) {
this.treeviewId = treeviewId;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -