⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goodsdto.java

📁 Java购物车及JSTL的应用
💻 JAVA
字号:
package org.qhit.li.store.dto;

import java.util.Date;

public class GoodsDTO {

	private int bid;

	private String btid;

	private String bname;

	private double bprice;

	private double bfreight;

	private String bpic;

	private String bremark;

	private String bspec;

	private String bxremark;

	private int bnum;

	private Date bdate;

	private double babate;

	private int bcommend;

	private int bopen;

	public GoodsDTO() {

	}

	public GoodsDTO(int bid, String btid, String bname, double bprice,
			double bfreight, String bpic, String bremark, String bspec,
			String bxremark, int bnum, Date bdate, double babate, int bcommend,
			int bopen) {
		this.bid = bid;
		this.btid = btid;
		this.bname = bname;
		this.bprice = bprice;
		this.bfreight = bfreight;
		this.bpic = bpic;
		this.bremark = bremark;
		this.bspec = bspec;
		this.bxremark = bxremark;
		this.bnum = bnum;
		this.bdate = bdate;
		this.babate = babate;
		this.bcommend = bcommend;
		this.bopen = bopen;
	}

	public double getBabate() {
		return babate;
	}

	public void setBabate(double babate) {
		this.babate = babate;
	}

	public int getBcommend() {
		return bcommend;
	}

	public void setBcommend(int bcommend) {
		this.bcommend = bcommend;
	}

	public Date getBdate() {
		return bdate;
	}

	public void setBdate(Date bdate) {
		this.bdate = bdate;
	}

	public double getBfreight() {
		return bfreight;
	}

	public void setBfreight(double bfreight) {
		this.bfreight = bfreight;
	}

	public int getBid() {
		return bid;
	}

	public void setBid(int bid) {
		this.bid = bid;
	}

	public String getBname() {
		return bname;
	}

	public void setBname(String bname) {
		this.bname = bname;
	}

	public int getBnum() {
		return bnum;
	}

	public void setBnum(int bnum) {
		this.bnum = bnum;
	}

	public int getBopen() {
		return bopen;
	}

	public void setBopen(int bopen) {
		this.bopen = bopen;
	}

	public String getBpic() {
		return bpic;
	}

	public void setBpic(String bpic) {
		this.bpic = bpic;
	}

	public double getBprice() {
		return bprice;
	}

	public void setBprice(double bprice) {
		this.bprice = bprice;
	}

	public String getBremark() {
		return bremark;
	}

	public void setBremark(String bremark) {
		this.bremark = bremark;
	}

	public String getBspec() {
		return bspec;
	}

	public void setBspec(String bspec) {
		this.bspec = bspec;
	}

	public String getBtid() {
		return btid;
	}

	public void setBtid(String btid) {
		this.btid = btid;
	}

	public String getBxremark() {
		return bxremark;
	}

	public void setBxremark(String bxremark) {
		this.bxremark = bxremark;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -