📄 orderdetailvo.java
字号:
package com.xaccp.aj3q8073.vo;
public class OrderDetailVo {
String orderId;
String bookName;
double bookPrice;
double bookDiscount;
int bookCount;
String custmorName;
String custmorAddress;
String custmorEmail;
String custmorPostman;
String custmorTel;
String sendStyle;
String payStyle;
String userName;
public int getBookCount() {
return bookCount;
}
public void setBookCount(int bookCount) {
this.bookCount = bookCount;
}
public double getBookDiscount() {
return bookDiscount;
}
public void setBookDiscount(double bookDiscount) {
this.bookDiscount = bookDiscount;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public double getBookPrice() {
return bookPrice;
}
public void setBookPrice(double bookPrice) {
this.bookPrice = bookPrice;
}
public String getCustmorAddress() {
return custmorAddress;
}
public void setCustmorAddress(String custmorAddress) {
this.custmorAddress = custmorAddress;
}
public String getCustmorEmail() {
return custmorEmail;
}
public void setCustmorEmail(String custmorEmail) {
this.custmorEmail = custmorEmail;
}
public String getCustmorName() {
return custmorName;
}
public void setCustmorName(String custmorName) {
this.custmorName = custmorName;
}
public String getCustmorPostman() {
return custmorPostman;
}
public void setCustmorPostman(String custmorPostman) {
this.custmorPostman = custmorPostman;
}
public String getCustmorTel() {
return custmorTel;
}
public void setCustmorTel(String custmorTel) {
this.custmorTel = custmorTel;
}
public String getPayStyle() {
return payStyle;
}
public void setPayStyle(String payStyle) {
this.payStyle = payStyle;
}
public String getSendStyle() {
return sendStyle;
}
public void setSendStyle(String sendStyle) {
this.sendStyle = sendStyle;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getOrderId() {
return orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -