?? userposition.java
字號:
package com.yuanchung.sales.model.admin.position;
import com.yuanchung.sales.model.Position;
import com.yuanchung.sales.model.Treeview;
import com.yuanchung.sales.model.user.User;
/**
* UserPosition entity.
*
* @author MyEclipse Persistence Tools
*/
public class UserPosition implements java.io.Serializable {
// Fields
/**
*
*/
private static final long serialVersionUID = 5360852168665839752L;
private Integer id;
private User user;
private Treeview treeview;
private Integer positionLevel;
// Constructors
/** default constructor */
public UserPosition() {
}
/** minimal constructor */
public UserPosition(User user, Treeview treeview) {
this.user = user;
this.treeview = treeview;
}
/** full constructor */
public UserPosition(User user, Treeview treeview, Integer positionLevel) {
this.user = user;
this.treeview = treeview;
this.positionLevel = positionLevel;
}
public UserPosition(User user2, Position position) {
// TODO Auto-generated constructor stub
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public Treeview getTreeview() {
return this.treeview;
}
public void setTreeview(Treeview treeview) {
this.treeview = treeview;
}
public Integer getPositionLevel() {
return this.positionLevel;
}
public void setPositionLevel(Integer positionLevel) {
this.positionLevel = positionLevel;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -