Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package in.shop2020.alert.domain;

import in.shop2020.alert.EntityType;
import in.shop2020.alert.AlertType;

public class AlertMapper {
        long id;
        EntityType entityType;
        int eventType;
        String eventDescription;
        String userIds;
        in.shop2020.alert.AlertType alertType;
        
        public long getId() {
                return id;
        }
        public void setId(long id) {
                this.id = id;
        }
        public EntityType getEntityType() {
                return entityType;
        }
        public void setEntityType(EntityType entityType) {
                this.entityType = entityType;
        }
        public int getEventType() {
                return eventType;
        }
        public void setEventType(int eventType) {
                this.eventType = eventType;
        }
        public String getEventDescription() {
                return eventDescription;
        }
        public void setEventDescription(String eventDescription) {
                this.eventDescription = eventDescription;
        }
        public AlertType getAlertType() {
                return alertType;
        }
        public void setAlertType(AlertType alertType) {
                this.alertType = alertType;
        }
        public String getUserIds() {
                return userIds;
        }
        public void setUserIds(String userIds) {
                this.userIds = userIds;
        }
        
}