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

📄 orderhead.java

📁 一个不错的在线购物管理系统设计分析.有需要的自行下载.
💻 JAVA
字号:
/*
 * Created on 2005-10-29
 * Author 曹汕
 * Version 1.0
 * Copyright by CS.SSPKU Inc. All rights reserved. 
 */
package com.struts.business;

import java.io.Serializable;

/**
 * @author cs
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class OrderHead implements Serializable{
	//	订单ID
	private int id;
	//会员ID
	private int memberId;
	//下订单日期
	private String orderDate;
	//送货地址
	private String deliveryAddress;
	//收件人
	private String orderPeople;
	//收件人邮编
	private String postcode;	
	//收件人联系电话
	private String orderPhone;
	//缺货处理方式
	private int lessDeal;
	//送货方式
	private int deliveryType;
	//支付方式
	private int paymentType;
	//是否需要发票
	private int isInvoice;
	//备注
	private String remark;
	//订单状态
	private int status;
	//订单状态
	private String statusName;
	//缺货处理方式名称
	private String lessDealName;
	//送货方式名称
	private String deliveryTypeName;
	//支付方式名称
	private String paymentTypeName;

	public OrderHead(){}
	
		
	/**
	 * @return Returns the deliveryAddress.
	 */
	public String getDeliveryAddress() {
		return deliveryAddress;
	}
	/**
	 * @param deliveryAddress The deliveryAddress to set.
	 */
	public void setDeliveryAddress(String deliveryAddress) {
		this.deliveryAddress = deliveryAddress;
	}
	/**
	 * @return Returns the deliveryType.
	 */
	public int getDeliveryType() {
		return deliveryType;
	}
	/**
	 * @param deliveryType The deliveryType to set.
	 */
	public void setDeliveryType(int deliveryType) {
		this.deliveryType = deliveryType;
	}
/**
 * @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 lessDeal.
	 */
	public int getLessDeal() {
		return lessDeal;
	}
	/**
	 * @param lessDeal The lessDeal to set.
	 */
	public void setLessDeal(int lessDeal) {
		this.lessDeal = lessDeal;
	}
	/**
	 * @return Returns the memberId.
	 */
	public int getMemberId() {
		return memberId;
	}
	/**
	 * @param memberId The memberId to set.
	 */
	public void setMemberId(int memberId) {
		this.memberId = memberId;
	}
	/**
	 * @return Returns the orderDate.
	 */
	public String getOrderDate() {
		return orderDate;
	}
	/**
	 * @param orderDate The orderDate to set.
	 */
	public void setOrderDate(String orderDate) {
		this.orderDate = orderDate;
	}
	/**
	 * @return Returns the orderPeople.
	 */
	public String getOrderPeople() {
		return orderPeople;
	}
	/**
	 * @param orderPeople The orderPeople to set.
	 */
	public void setOrderPeople(String orderPeople) {
		this.orderPeople = orderPeople;
	}
	/**
	 * @return Returns the orderPhone.
	 */
	public String getOrderPhone() {
		return orderPhone;
	}
	/**
	 * @param orderPhone The orderPhone to set.
	 */
	public void setOrderPhone(String orderPhone) {
		this.orderPhone = orderPhone;
	}
	/**
	 * @return Returns the postcode.
	 */
	public String getPostcode() {
		return postcode;
	}
	/**
	 * @param postcode The postcode to set.
	 */
	public void setPostcode(String postcode) {
		this.postcode = postcode;
	}
	/**
	 * @return Returns the paymentType.
	 */
	public int getPaymentType() {
		return paymentType;
	}
	/**
	 * @param paymentType The paymentType to set.
	 */
	public void setPaymentType(int paymentType) {
		this.paymentType = paymentType;
	}
	/**
	 * @return Returns the remark.
	 */
	public String getRemark() {
		return remark;
	}
	/**
	 * @param remark The remark to set.
	 */
	public void setRemark(String remark) {
		this.remark = remark;
	}
	/**
	 * @return Returns the status.
	 */
	public int getStatus() {
		return status;
	}
	/**
	 * @param status The status to set.
	 */
	public void setStatus(int status) {
		this.status = status;
	}
	/**
	 * @return Returns the isInvoice.
	 */
	public int getIsInvoice() {
		return isInvoice;
	}
	/**
	 * @param isInvoice The isInvoice to set.
	 */
	public void setIsInvoice(int isInvoice) {
		this.isInvoice = isInvoice;
	}
	
	
	/**
	 * @return Returns the deliveryTypeName.
	 */
	public String getDeliveryTypeName() {
		return deliveryTypeName;
	}
	/**
	 * @param deliveryTypeName The deliveryTypeName to set.
	 */
	public void setDeliveryTypeName(String deliveryTypeName) {
		this.deliveryTypeName = deliveryTypeName;
	}
	/**
	 * @return Returns the lessDealName.
	 */
	public String getLessDealName() {
		return lessDealName;
	}
	/**
	 * @param lessDealName The lessDealName to set.
	 */
	public void setLessDealName(String lessDealName) {
		this.lessDealName = lessDealName;
	}
	/**
	 * @return Returns the paymentTypeName.
	 */
	public String getPaymentTypeName() {
		return paymentTypeName;
	}
	/**
	 * @param paymentTypeName The paymentTypeName to set.
	 */
	public void setPaymentTypeName(String paymentTypeName) {
		this.paymentTypeName = paymentTypeName;
	}
	/**
	 * @return Returns the statusName.
	 */
	public String getStatusName() {
		return statusName;
	}
	/**
	 * @param statusName The statusName to set.
	 */
	public void setStatusName(String statusName) {
		this.statusName = statusName;
	}
}


⌨️ 快捷键说明

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