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

📄 orders.java

📁 C2C购物网站 含有数据库 解压后readme.txt里有详细说明
💻 JAVA
字号:
package com.shop;

import org.apache.struts.action.ActionForm;

/**
 * Orders generated by MyEclipse Persistence Tools
 */

public class Orders extends ActionForm implements java.io.Serializable {

	// Fields

	public int id;

	public int gid;

	public int cid;

	public int mount;

	public double price;

	public double totle;

	public String carrytype;

	public String date;

	public String enforce;

	// Constructors

	/** default constructor */
	public Orders() {
	}

	/** full constructor */
	public Orders(int gid, int cid, int mount, double price,
			double totle, String carrytype, String date, String enforce) {
		this.gid = gid;
		this.cid = cid;
		this.mount = mount;
		this.price = price;
		this.totle = totle;
		this.carrytype = carrytype;
		this.date = date;
		this.enforce = enforce;
	}

	// Property accessors

	

	/**
	 * @return Returns the carrytype.
	 */
	public String getCarrytype() {
		return carrytype;
	}
	/**
	 * @param carrytype The carrytype to set.
	 */
	public void setCarrytype(String carrytype) {
		this.carrytype = carrytype;
	}
	/**
	 * @return Returns the cid.
	 */
	public int getCid() {
		return cid;
	}
	/**
	 * @param cid The cid to set.
	 */
	public void setCid(int cid) {
		this.cid = cid;
	}
	/**
	 * @return Returns the date.
	 */
	public String getDate() {
		return date;
	}
	/**
	 * @param date The date to set.
	 */
	public void setDate(String date) {
		this.date = date;
	}
	/**
	 * @return Returns the enforce.
	 */
	public String getEnforce() {
		return enforce;
	}
	/**
	 * @param enforce The enforce to set.
	 */
	public void setEnforce(String enforce) {
		this.enforce = enforce;
	}
	/**
	 * @return Returns the gid.
	 */
	public int getGid() {
		return gid;
	}
	/**
	 * @param gid The gid to set.
	 */
	public void setGid(int gid) {
		this.gid = gid;
	}
	/**
	 * @return Returns the id.
	 */
	public int getId() {
		return id;
	}
	/**
	 * @param id The id to set.
	 */
	public void setId(int id) {
		this.id = id;
	}
	/**
	 * @return Returns the mount.
	 */
	public int getMount() {
		return mount;
	}
	/**
	 * @param mount The mount to set.
	 */
	public void setMount(int mount) {
		this.mount = mount;
	}
	/**
	 * @return Returns the price.
	 */
	public double getPrice() {
		return price;
	}
	/**
	 * @param price The price to set.
	 */
	public void setPrice(double price) {
		this.price = price;
	}
	/**
	 * @return Returns the totle.
	 */
	public double getTotle() {
		return totle;
	}
	/**
	 * @param totle The totle to set.
	 */
	public void setTotle(double totle) {
		this.totle = totle;
	}
}

⌨️ 快捷键说明

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