Switch to unified view

a b/recommendation-engine/src/main/java/eu/alfred/event_manager/model/Tickets.java
1
package eu.alfred.event_manager.model;
2
3
import java.util.Date; 
4
5
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
6
7
@JsonIgnoreProperties(ignoreUnknown=true) 
8
public class Tickets {
9
10
  private Event at_event;
11
  private Date end_date;
12
  private int include_fee;
13
  private int min;
14
  private int max;
15
  private int visible;
16
  private double price;
17
  private String name;
18
  private String currency;
19
  private String description;
20
  
21
  public Event getAt_event() {
22
      return at_event;
23
  }
24
  public void setAt_event(Event at_event) {
25
      this.at_event = at_event;
26
  }
27
  public Date getEnd_date() {
28
      return end_date;
29
  }
30
  public void setEnd_date(Date end_date) {
31
      this.end_date = end_date;
32
  }
33
  public int getInclude_fee() {
34
      return include_fee;
35
  }
36
  public void setInclude_fee(int include_fee) {
37
      this.include_fee = include_fee;
38
  }
39
  public int getMin() {
40
      return min;
41
  }
42
  public void setMin(int min) {
43
      this.min = min;
44
  }
45
  public int getMax() {
46
      return max;
47
  }
48
  public void setMax(int max) {
49
      this.max = max;
50
  }
51
  public int getVisible() {
52
      return visible;
53
  }
54
  public void setVisible(int visible) {
55
      this.visible = visible;
56
  }
57
  public double getPrice() {
58
      return price;
59
  }
60
  public void setPrice(double price) {
61
      this.price = price;
62
  }
63
  public String getName() {
64
      return name;
65
  }
66
  public void setName(String name) {
67
      this.name = name;
68
  }
69
  public String getCurrency() {
70
      return currency;
71
  }
72
  public void setCurrency(String currency) {
73
      this.currency = currency;
74
  }
75
  public String getDescription() {
76
      return description;
77
  }
78
  public void setDescription(String description) {
79
      this.description = description;
80
  }
81
  
82
  
83
  
84
}