package com.itbox.grzl.event.bean;
/**
* 活动评分
* @author hyh
* creat_at:2013-9-25-下午1:13:01
*/
public class ValuationModel {
private int ActivityId;
private int UserID;
private float AtmosphereValue;
private float AttendedValue;
private float PriceValue;
private float AddressValue;
public int getActivityId() {
return ActivityId;
}
public void setActivityId(int activityId) {
ActivityId = activityId;
}
public int getUserID() {
return UserID;
}
public void setUserID(int userID) {
UserID = userID;
}
public float getAtmosphereValue() {
return AtmosphereValue;
}
public void setAtmosphereValue(float atmosphereValue) {
AtmosphereValue = atmosphereValue;
}
public float getAttendedValue() {
return AttendedValue;
}
public void setAttendedValue(float attendedValue) {
AttendedValue = attendedValue;
}
public float getPriceValue() {
return PriceValue;
}
public void setPriceValue(float priceValue) {
PriceValue = priceValue;
}
public float getAddressValue() {
return AddressValue;
}
public void setAddressValue(float addressValue) {
AddressValue = addressValue;
}
}