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

📄 tborderdetail.java

📁 构建一个以商品销售为主体的电子商城,功能描叙如下: 1.按商品大类及商品名称进行模糊查询 2.实现网上购物 3.新品及特价商品展示 4.商品销售排行
💻 JAVA
字号:
package com.lzw.model;
public class TbOrderDetail implements java.io.Serializable {
	private Long id;
	private TbOrder tbOrder;
	private TbGoods tbGoods;
	private Double price;
	private Integer number;
	public TbOrderDetail() {
	}
	public TbOrderDetail(Long id, TbOrder tbOrder, TbGoods tbGoods,
			Double price, Integer number) {
		this.id = id;
		this.tbOrder = tbOrder;
		this.tbGoods = tbGoods;
		this.price = price;
		this.number = number;
	}
	public Long getId() {
		return this.id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public TbOrder getTbOrder() {
		return this.tbOrder;
	}

	public void setTbOrder(TbOrder tbOrder) {
		this.tbOrder = tbOrder;
	}

	public TbGoods getTbGoods() {
		return this.tbGoods;
	}

	public void setTbGoods(TbGoods tbGoods) {
		this.tbGoods = tbGoods;
	}

	public Double getPrice() {
		return this.price;
	}

	public void setPrice(Double price) {
		this.price = price;
	}

	public Integer getNumber() {
		return this.number;
	}

	public void setNumber(Integer number) {
		this.number = number;
	}

}

⌨️ 快捷键说明

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