📄 order.java
字号:
package org.myrose.beans;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Order {
private int orderId;
private int bnumber;
private String username;
private String truename;
private String address;
private String postcode;
private String tel;
private String email;
private String pay;
private String carry;
private double rebate;
private Date orderdate;
private String bz;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getBnumber() {
return bnumber;
}
public void setBnumber(int bnumber) {
this.bnumber = bnumber;
}
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
public String getCarry() {
return carry;
}
public void setCarry(String carry) {
this.carry = carry;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Date getOrderdate() {
SimpleDateFormat format = new SimpleDateFormat("MM-dd-yyyy HH:mm:ss");
try {
orderdate = format.parse(format.format(orderdate));
} catch (ParseException e) {
e.printStackTrace();
}
return orderdate;
}
public void setOrderdate(Date orderdate) {
this.orderdate = orderdate;
}
public int getOrderId() {
return orderId;
}
public void setOrderId(int orderId) {
this.orderId = orderId;
}
public String getPay() {
return pay;
}
public void setPay(String pay) {
this.pay = pay;
}
public String getPostcode() {
return postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public double getRebate() {
return rebate;
}
public void setRebate(double rebate) {
this.rebate = rebate;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getTruename() {
return truename;
}
public void setTruename(String truename) {
this.truename = truename;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -