📄 accountinfo.java
字号:
package com.accp.entity;
import java.util.HashSet;
import java.util.Set;
/**
* Accountinfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class Accountinfo implements java.io.Serializable {
// Fields
private Long id;
private String account;
private String psw;
private Long total;
private Set tickets = new HashSet(0);
// Constructors
/** default constructor */
public Accountinfo() {
}
/** full constructor */
public Accountinfo(String account, String psw, Long total, Set tickets) {
this.account = account;
this.psw = psw;
this.total = total;
this.tickets = tickets;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getAccount() {
return this.account;
}
public void setAccount(String account) {
this.account = account;
}
public String getPsw() {
return this.psw;
}
public void setPsw(String psw) {
this.psw = psw;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public Set getTickets() {
return this.tickets;
}
public void setTickets(Set tickets) {
this.tickets = tickets;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -