📄 tright.java
字号:
package com.chinatelecom.mode;
/**
* TRight generated by MyEclipse Persistence Tools
*/
public class TRight implements java.io.Serializable {
// Fields
private Long rightId;
private TRole TRole;
private String userId;
// Constructors
public TRight() {
}
public TRight(String userId) {
this.userId = userId;
}
/** full constructor */
public TRight(TRole TRole, String userId) {
this.TRole = TRole;
this.userId = userId;
}
// Property accessors
public Long getRightId() {
return this.rightId;
}
public void setRightId(Long rightId) {
this.rightId = rightId;
}
public TRole getTRole() {
return this.TRole;
}
public void setTRole(TRole TRole) {
this.TRole = TRole;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -