shop.java

来自「这是一款最新的野蔷薇论坛源码,有需要的朋友可以尽情下载」· Java 代码 · 共 128 行

JAVA
128
字号
/* 
 * Created on 2006-2-20
 * Last modified on 2006-12-27
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.dao.model;


public class Shop implements java.io.Serializable{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private int shopId = 0;
	
	private int goodsId = 0; //物品编号
	
	private int userGoodesId = 0; //用户物品的ID编号
	
	private String goodsName = ""; //物品名称
	
	private String memo = ""; //商品简介
	
	private byte type = 0;
	
	private int total = 0;
	
	private double price = 0;
	
	private long createDateTime = 0;
	
	private int userId = 0;
	
	private String userName = "";

	public long getCreateDateTime() {
		return createDateTime;
	}

	public void setCreateDateTime(long createDateTime) {
		this.createDateTime = createDateTime;
	}

	public int getGoodsId() {
		return goodsId;
	}

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

	public String getGoodsName() {
		return goodsName;
	}

	public void setGoodsName(String goodsName) {
		this.goodsName = goodsName;
	}

	public String getMemo() {
		return memo;
	}

	public void setMemo(String memo) {
		this.memo = memo;
	}

	public double getPrice() {
		return price;
	}

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

	public int getShopId() {
		return shopId;
	}

	public void setShopId(int shopId) {
		this.shopId = shopId;
	}

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

	public byte getType() {
		return type;
	}

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

	public int getUserGoodesId() {
		return userGoodesId;
	}

	public void setUserGoodesId(int userGoodesId) {
		this.userGoodesId = userGoodesId;
	}

	public int getUserId() {
		return userId;
	}

	public void setUserId(int userId) {
		this.userId = userId;
	}

	public String getUserName() {
		return userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}
	
	
}

⌨️ 快捷键说明

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