📄 roomtypeprice.java
字号:
/*
* RoomTypePrice.java
*
* Created on 2007年6月4日, 下午10:07
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package lambert;
import java.io.Serializable;
/**
* 实体类 RoomTypePrice
*
* @author Virlene Cheng
*/
public class RoomTypePrice implements Serializable
{
private String roomType;
private double hourPrice;
private double halfDayPrice;
private Double dayPrice;
/** Creates a new instance of RoomTypePrice */
public RoomTypePrice()
{
}
/**
* 使用指定的值创建 RoomTypePrice 的新实例。
* @param roomType,RoomTypePrice 的 roomType
*/
public RoomTypePrice(String roomType)
{
this.roomType = roomType;
}
/**
* 使用指定的值创建 RoomTypePrice 的新实例。
* @param roomType,RoomTypePrice 的 roomType
* @param hourPrice,RoomTypePrice 的 hourPrice
* @param halfDayPrice,RoomTypePrice 的 halfDayPrice
*/
public RoomTypePrice(String roomType, double hourPrice, double halfDayPrice)
{
this.roomType = roomType;
this.hourPrice = hourPrice;
this.halfDayPrice = halfDayPrice;
}
/**
* 获取此 RoomTypePrice 的 roomType。
* @return roomType
*/
public String getRoomType()
{
return this.roomType;
}
/**
* 将此 RoomTypePrice 的 roomType 设置为指定的值。
* @param roomType,新建 roomType
*/
public void setRoomType(String roomType)
{
this.roomType = roomType;
}
/**
* 获取此 RoomTypePrice 的 hourPrice。
* @return hourPrice
*/
public double getHourPrice()
{
return this.hourPrice;
}
/**
* 将此 RoomTypePrice 的 hourPrice 设置为指定的值。
* @param hourPrice,新建 hourPrice
*/
public void setHourPrice(double hourPrice)
{
this.hourPrice = hourPrice;
}
/**
* 获取此 RoomTypePrice 的 halfDayPrice。
* @return halfDayPrice
*/
public double getHalfDayPrice()
{
return this.halfDayPrice;
}
/**
* 将此 RoomTypePrice 的 halfDayPrice 设置为指定的值。
* @param halfDayPrice,新建 halfDayPrice
*/
public void setHalfDayPrice(double halfDayPrice)
{
this.halfDayPrice = halfDayPrice;
}
/**
* 获取此 RoomTypePrice 的 dayPrice。
* @return dayPrice
*/
public Double getDayPrice()
{
return this.dayPrice;
}
/**
* 将此 RoomTypePrice 的 dayPrice 设置为指定的值。
* @param dayPrice,新建 dayPrice
*/
public void setDayPrice(Double dayPrice)
{
this.dayPrice = dayPrice;
}
/**
* 返回对象的散列代码值。该实现根据此对象
* 中 id 字段计算散列代码值。
* @return 此对象的散列代码值。
*/
@Override
public int hashCode()
{
int hash = 0;
hash += (this.roomType != null ? this.roomType.hashCode() : 0);
return hash;
}
/**
* 确定其他对象是否等于此 RoomTypePrice。当且仅当
* 参数不为 null 且该参数是具有与此对象相同 id 字段值的 RoomTypePrice 对象时,
* 结果才为 <code>true</code>。
* @param 对象,要比较的引用对象
* 如果此对象与参数相同,则 @return <code>true</code>;
* 否则为 <code>false</code>。
*/
@Override
public boolean equals(Object object)
{
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof RoomTypePrice)) {
return false;
}
RoomTypePrice other = (RoomTypePrice)object;
if (this.roomType != other.roomType && (this.roomType == null || !this.roomType.equals(other.roomType))) return false;
return true;
}
/**
* 返回对象的字符串表示法。该实现根据 id 字段
* 构造此表示法。
* @return 对象的字符串表示法。
*/
@Override
public String toString()
{
return "temp.RoomTypePrice[roomType=" + roomType + "]";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -