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

📄 orderdto.java

📁 网上购物系统
💻 JAVA
字号:
//----------------------------------------------------------
//$Id: $
//Copyright (c) SHSAFE 2005-2006. All Rights Reserved.
//----------------------------------------------------------
package example.common.dto;

import com.shsafe.common.basic.dto.BaseDTO;

/**
 * User DTO
 * 
 * @author Michael J Chane
 * @version $Revision: $ $Date: $
 */
public class OrderDTO extends BaseDTO {

	/**
	 * The serialVersionUID
	 */
	private static final long serialVersionUID = 840044572917926024L;

	/**
	 * Order ID
	 */
	private String orderId;

	/**
	 * Produc Name
	 */
	private String orderName;

	/**
	 * User ID
	*/
	/**
	 * Produc Name
	 */
	private String referDate;

	/**
	 * User ID
	*/
	/**
	 * Produc Name
	 */
	private String dealDate;
	
	private String orderState;

	/**
	 * User ID
	*/
	private String userId;
	  
    /**
	* User ID
	*/
	private String productCount;
	
	/**
	 * productId
	 */
    private String productId;
    
    private String price;
    
    private String productName;
    
    private String beforeOrderId;
    
    public int index;
	/**
	 * Retrieves the orderId.
	 * 
	 * @return Returns the orderId.
	 */
	public String getOrderId() {
		return orderId;
	}

	/**
	 * Sets the orderId to the given value.
	 * 
	 * @param userId
	 *            The orderId to set.
	 */
	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}

	

	

	public String getUserId() {
		return userId;
	}

	public void setUserId(String userId) {
		this.userId = userId;
	}
	
	 /**
	   * Retrieves the userId.
	   * 
	   * @return Returns the userId.
	   */
	  public String getProductId() {
	    return productId;
	  }

	  /**
	   * Sets the userId to the given value.
	   * 
	   * @param userId
	   *          The userId to set.
	   */
	  public void setProductId(String productId) {
	    this.productId = productId;
	  }

	public String getReferDate() {
		return referDate;
	}

	public void setReferDate(String referDate) {
		this.referDate = referDate;
	}

	public String getDealDate() {
		return dealDate;
	}

	public void setDealDate(String dealDate) {
		this.dealDate = dealDate;
	}

	/**
	 * @return Returns the orderName.
	 */
	public String getOrderName() {
		return orderName;
	}

	/**
	 * @param orderName The orderName to set.
	 */
	public void setOrderName(String orderName) {
		this.orderName = orderName;
	}

	/**
	 * @return Returns the price.
	 */
	public String getPrice() {
		return price;
	}

	/**
	 * @param price The price to set.
	 */
	public void setPrice(String price) {
		this.price = price;
	}

	/**
	 * @return Returns the productName.
	 */
	public String getProductName() {
		return productName;
	}

	/**
	 * @param productName The productName to set.
	 */
	public void setProductName(String productName) {
		this.productName = productName;
	}


	public int getIndex() {
		return index;
	}

	public void setIndex(int index) {
		this.index = index;
	}

	/**
	 * @return Returns the productCount.
	 */
	public String getProductCount() {
		return productCount;
	}

	/**
	 * @param productCount The productCount to set.
	 */
	public void setProductCount(String productCount) {
		this.productCount = productCount;
	}

	/**
	 * @return Returns the beforeOrderId.
	 */
	public String getBeforeOrderId() {
		return beforeOrderId;
	}

	/**
	 * @param beforeOrderId The beforeOrderId to set.
	 */
	public void setBeforeOrderId(String beforeOrderId) {
		this.beforeOrderId = beforeOrderId;
	}

	/**
	 * @return Returns the orderState.
	 */
	public String getOrderState() {
		return orderState;
	}

	/**
	 * @param orderState The orderState to set.
	 */
	public void setOrderState(String orderState) {
		this.orderState = orderState;
	}

	
}

⌨️ 快捷键说明

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