📄 member.java
字号:
package org.myrose.beans;
public class Member {
private int id;
private String username;
private String truename;
private String password;
private String city;
private String address;
private String postcode;
private String cardno;
private String cardtype;
private int grade;
private double amount;
private String tel;
private String email;
private int freeze;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getTruename() {
return truename;
}
public void setTruename(String truename) {
this.truename = truename;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPostcode() {
return postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getCardno() {
return cardno;
}
public void setCardno(String cardno) {
this.cardno = cardno;
}
public String getCardtype() {
return cardtype;
}
public void setCardtype(String cardtype) {
this.cardtype = cardtype;
}
public int getGrade() {
return grade;
}
public void setGrade(int grade) {
this.grade = grade;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public int getFreeze() {
return freeze;
}
public void setFreeze(int freeze) {
this.freeze = freeze;
}
public Member() {
super();
// TODO Auto-generated constructor stub
}
public Member(int id, String username, String truename, String password,
String city, String address, String postcode, String cardno,
String cardtype, int grade, double amount, String tel,
String email, int freeze) {
super();
this.id = id;
this.username = username;
this.truename = truename;
this.password = password;
this.city = city;
this.address = address;
this.postcode = postcode;
this.cardno = cardno;
this.cardtype = cardtype;
this.grade = grade;
this.amount = amount;
this.tel = tel;
this.email = email;
this.freeze = freeze;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -