account.java
来自「SSH 开发网上订餐系统。由于SSH相关包太大不方便上传。请自行导入。」· Java 代码 · 共 90 行
JAVA
90 行
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 + =
减小字号Ctrl + -
显示快捷键?