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

📄 goodsattribute.java

📁 电信的网厅的整站代码
💻 JAVA
字号:
package com.doone.wskfmgr.business.netstore.page;

import java.util.Date;

/**
 * 商品属性.
 * @author wushaol
 * 
 */
public class GoodsAttribute{

	private long goodsId = 0L;// NUMBER(10) 商品序列;

	private long storeId = 0L;// NUMBER(10) 所属商店

	private long type ;// VARCHAR2(5) 商品类别;

	private String description = "";// VARCHAR2(512) 商品描述

	private double price = 0.0d;// NUMBER(10,2) 0.0 商品单价;

	private double vipPrice = 0.0d;// NUMBER(10,2) 0.0 会员价格

	private double bargainPrice = 0.0d;// NUMBER(10,2) 0.0 促销价格

	private int saleIndex = 0;// NUMBER(5) 0 销售级别

	private Date orderTime = null; // DATE sysdate 定购时间;

	private String orderMan = "";// VARCHAR2(256) 定购人;

	private String state = "E";// VARCHAR2(1) 'E' 是否可用

	long contentId;
	
	public long getContentId() {
		return contentId;
	}

	public void setContentId(long contentId) {
		this.contentId = contentId;
	}

	/**
	 * @param request
	 */
	public GoodsAttribute() {
	}
	
	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public long getGoodsId() {
		return goodsId;
	}

	public void setGoodsId(long goodsId) {
		this.goodsId = goodsId;
	}

	public String getOrderMan() {
		return orderMan;
	}

	public void setOrderMan(String orderMan) {
		this.orderMan = orderMan;
	}

	public Date getOrderTime() {
		return orderTime;
	}

	public void setOrderTime(Date orderTime) {
		this.orderTime = orderTime;
	}

	public double getPrice() {
		return price;
	}

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

	public int getSaleIndex() {
		return saleIndex;
	}

	public void setSaleIndex(int saleIndex) {
		this.saleIndex = saleIndex;
	}

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}

	public long getStoreId() {
		return storeId;
	}

	public void setStoreId(long storeId) {
		this.storeId = storeId;
	}

	public long getType() {
		return type;
	}

	public void setType(long type) {
		this.type = type;
	}

	public double getVipPrice() {
		return vipPrice;
	}

	public void setVipPrice(double vipPrice) {
		this.vipPrice = vipPrice;
	}

	public double getBargainPrice() {
		return bargainPrice;
	}

	public void setBargainPrice(double bargainPrice) {
		this.bargainPrice = bargainPrice;
	}

}

⌨️ 快捷键说明

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