?? position.java
字號:
package com.yuanchung.sales.model;
import java.util.HashSet;
import java.util.Set;
/**
* Position entity.
*
* @author MyEclipse Persistence Tools
*/
public class Position implements java.io.Serializable {
// Fields
private Integer id;
private Treeview treeview;
private String positionName;
private Set userPositions = new HashSet(0);
// Constructors
/** default constructor */
public Position() {
}
/** full constructor */
public Position(Treeview treeview, String positionName) {
this.treeview = treeview;
this.positionName = positionName;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Treeview getTreeview() {
return this.treeview;
}
public void setTreeview(Treeview treeview) {
this.treeview = treeview;
}
public String getPositionName() {
return this.positionName;
}
public void setPositionName(String positionName) {
this.positionName = positionName;
}
public Set getUserPositions() {
return this.userPositions;
}
public void setUserPositions(Set userPositions) {
this.userPositions = userPositions;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -