?? account.java
字號:
package com.web.model;
import java.util.HashSet;
import java.util.Set;
/**
* Account entity.
*
* @author MyEclipse Persistence Tools
*/
public class Account implements java.io.Serializable {
// Fields
private String AId;
private UserInfo userInfo;
private Integer AState;
private String ATime;
private String AMemo;
// Constructors
/** default constructor */
public Account() {
}
/** minimal constructor */
public Account(String AId, UserInfo userInfo, Integer AState, String ATime) {
this.AId = AId;
this.userInfo = userInfo;
this.AState = AState;
this.ATime = ATime;
}
/** full constructor */
public Account(String AId, UserInfo userInfo, Integer AState, String ATime,
String AMemo) {
this.AId = AId;
this.userInfo = userInfo;
this.AState = AState;
this.ATime = ATime;
this.AMemo = AMemo;
}
// Property accessors
public String getAId() {
return this.AId;
}
public void setAId(String AId) {
this.AId = AId;
}
public UserInfo getUserInfo() {
return this.userInfo;
}
public void setUserInfo(UserInfo userInfo) {
this.userInfo = userInfo;
}
public Integer getAState() {
return this.AState;
}
public void setAState(Integer AState) {
this.AState = AState;
}
public String getATime() {
return this.ATime;
}
public void setATime(String ATime) {
this.ATime = ATime;
}
public String getAMemo() {
return this.AMemo;
}
public void setAMemo(String AMemo) {
this.AMemo = AMemo;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -