events.system.domain.EventRating Maven / Gradle / Ivy
package events.system.domain;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import rating.system.domain.Rating;
@Getter
@Setter
@ToString(callSuper=true)
@EqualsAndHashCode(callSuper=true)
public class EventRating extends Rating {
/** The serial Version UID */
private static final long serialVersionUID = 1L;
/** The rating for the contact. */
private Integer contact;
/**
* The event attribute that references to the domain class
* {@link EventTemplateBusinessObject}.
*/
private EventTemplateBusinessObject event;
/** The rating for the event location. */
private Integer eventlocation;
/** The rating for the material. */
private Integer material;
/** The rating for the presentation. */
private Integer presentation;
/** The rating for the support. */
private Integer support;
/** The rating for the topic. */
private Integer topic;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy