orderdetailvo.java

来自「java开发购物车+网上书城」· Java 代码 · 共 96 行

JAVA
96
字号
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 + =
减小字号Ctrl + -
显示快捷键?