petdto.java

来自「网上购物系统」· Java 代码 · 共 124 行

JAVA
124
字号
// ----------------------------------------------------------
// $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 PetDTO extends BaseDTO {

  /**
   * The serialVersionUID
   */
  private static final long serialVersionUID = 840044572917926024L;
  
  /**
   * Pet ID
   */
  private String petID;

  /**
   * Pet Name
   */
  private String petName;

  /**
   * min Price
   */
  private String minPrice;  
  
  /**
   * max Price
   */
  private String maxPrice; 
  
  /**
   * Pet Price
   */
  private String petPrice; 
  
  /**
   * Pet Count
   */
  private String petCount; 
  
  /**
   * Pet Info
   */
  private String petInfo; 
  
  /**
   * Retrieves the petName.
   * 
   * @return Returns the petName.
   */
	public String getPetName() {
		return petName;
	}
	
	 /**
	   * Sets the petName to the given value.
	   * 
	   * @param petName
	   *          The petName to set.
	   */
	public void setPetName(String petName){
		this.petName = petName;
	}

	public String getPetID() {
		return petID;
	}

	public void setPetID(String petID) {
		this.petID = petID;
	}

	public String getMinPrice() {
		return minPrice;
	}

	public void setMinPrice(String minPrice) {
		this.minPrice = minPrice;
	}

	public String getMaxPrice() {
		return maxPrice;
	}

	public void setMaxPrice(String maxPrice) {
		this.maxPrice = maxPrice;
	}

	public String getPetPrice() {
		return petPrice;
	}

	public void setPetPrice(String petPrice) {
		this.petPrice = petPrice;
	}

	public String getPetCount() {
		return petCount;
	}

	public void setPetCount(String petCount) {
		this.petCount = petCount;
	}

	public String getPetInfo() {
		return petInfo;
	}

	public void setPetInfo(String petInfo) {
		this.petInfo = petInfo;
	}
}

⌨️ 快捷键说明

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