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

📄 xspricelist.java

📁 关于网上汽车销售系统的详细编程项目实战实例
💻 JAVA
字号:
package com.company.struts.form;

import java.util.Date;

/**
 * XsPriceList generated by MyEclipse Persistence Tools
 */

public class XsPriceList extends org.apache.struts.action.ActionForm implements
		java.io.Serializable {

	// Fields

	private Integer priceId;

	private Integer wareCode;

	private Integer cusCode;

	private long quantity;

	private long capitalUnitPrice;

	private long capitalTaxUnitPrice;

	private Date priceDate;

	// Constructors

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

	/** minimal constructor */
	public XsPriceList(Integer wareCode, Integer cusCode, Date priceDate) {
		this.wareCode = wareCode;
		this.cusCode = cusCode;
		this.priceDate = priceDate;
	}

	/** full constructor */
	public XsPriceList(Integer wareCode, Integer cusCode, long quantity,
			long capitalUnitPrice, long capitalTaxUnitPrice, Date priceDate) {
		this.wareCode = wareCode;
		this.cusCode = cusCode;
		this.quantity = quantity;
		this.capitalUnitPrice = capitalUnitPrice;
		this.capitalTaxUnitPrice = capitalTaxUnitPrice;
		this.priceDate = priceDate;
	}

	// Property accessors

	public Integer getPriceId() {
		return this.priceId;
	}

	public void setPriceId(Integer priceId) {
		this.priceId = priceId;
	}

	public Integer getWareCode() {
		return this.wareCode;
	}

	public void setWareCode(Integer wareCode) {
		this.wareCode = wareCode;
	}

	public Integer getCusCode() {
		return this.cusCode;
	}

	public void setCusCode(Integer cusCode) {
		this.cusCode = cusCode;
	}

	public long getQuantity() {
		return this.quantity;
	}

	public void setQuantity(long quantity) {
		this.quantity = quantity;
	}

	public long getCapitalUnitPrice() {
		return this.capitalUnitPrice;
	}

	public void setCapitalUnitPrice(long capitalUnitPrice) {
		this.capitalUnitPrice = capitalUnitPrice;
	}

	public long getCapitalTaxUnitPrice() {
		return this.capitalTaxUnitPrice;
	}

	public void setCapitalTaxUnitPrice(long capitalTaxUnitPrice) {
		this.capitalTaxUnitPrice = capitalTaxUnitPrice;
	}

	public Date getPriceDate() {
		return this.priceDate;
	}

	public void setPriceDate(Date priceDate) {
		this.priceDate = priceDate;
	}

}

⌨️ 快捷键说明

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