?? abstractsuserappend.java
字號:
package com.support.hibernate.table;
/**
* AbstractSUserAppend generated by MyEclipse Persistence Tools
*/
public abstract class AbstractSUserAppend implements java.io.Serializable {
// Fields
private String id;
private String userId;
private String headImage;
private String parentId;
private String sign;
private String otherInfo;
// Constructors
/** default constructor */
public AbstractSUserAppend() {
}
/** minimal constructor */
public AbstractSUserAppend(String userId) {
this.userId = userId;
}
/** full constructor */
public AbstractSUserAppend(String userId, String headImage,
String parentId, String sign, String otherInfo) {
this.userId = userId;
this.headImage = headImage;
this.parentId = parentId;
this.sign = sign;
this.otherInfo = otherInfo;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getHeadImage() {
return this.headImage;
}
public void setHeadImage(String headImage) {
this.headImage = headImage;
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
public String getSign() {
return this.sign;
}
public void setSign(String sign) {
this.sign = sign;
}
public String getOtherInfo() {
return this.otherInfo;
}
public void setOtherInfo(String otherInfo) {
this.otherInfo = otherInfo;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -