?? account.java
字號:
package mypack;
public class Account{
private String username=null; //購物用戶名
private String name=null; //cd名
private String amount=null; //定購數量
private int id=0; //id
private String thedate=null; //時間
public Account(int id ,String username,String name,String amount,String thedate ) {
this.id=id;
this.username=username;
this.name =name;
this.amount=amount;
this.thedate=thedate;
}
public Account(){
}
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 getName() {
return name;
}
public void setName(String name) {
this.name= name;
}
public String getAmount(){
return amount;
}
public void setAmount(String amount) {
this.amount= amount;
}
public String getThedate() {
return thedate;
}
public void setThedate(String thedate) {
this.thedate= thedate;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -