Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5519 amar.kumar 1
package in.shop2020.alert.domain;
2
 
3
import in.shop2020.alert.EntityType;
4
import in.shop2020.alert.AlertType;
5
 
6
public class AlertMapper {
7
	long id;
8
	EntityType entityType;
9
	int eventType;
10
	String eventDescription;
11
	String userIds;
12
	in.shop2020.alert.AlertType alertType;
13
 
14
	public long getId() {
15
		return id;
16
	}
17
	public void setId(long id) {
18
		this.id = id;
19
	}
20
	public EntityType getEntityType() {
21
		return entityType;
22
	}
23
	public void setEntityType(EntityType entityType) {
24
		this.entityType = entityType;
25
	}
26
	public int getEventType() {
27
		return eventType;
28
	}
29
	public void setEventType(int eventType) {
30
		this.eventType = eventType;
31
	}
32
	public String getEventDescription() {
33
		return eventDescription;
34
	}
35
	public void setEventDescription(String eventDescription) {
36
		this.eventDescription = eventDescription;
37
	}
38
	public AlertType getAlertType() {
39
		return alertType;
40
	}
41
	public void setAlertType(AlertType alertType) {
42
		this.alertType = alertType;
43
	}
44
	public String getUserIds() {
45
		return userIds;
46
	}
47
	public void setUserIds(String userIds) {
48
		this.userIds = userIds;
49
	}
50
 
51
}