Blame view

src/main/java/etunicorn/entity/Evenement.java 1.39 KB
8799baa6   Geoffrey PREUD'HOMME   Ajout des entitée...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  package etunicorn.entity;
  
  import com.fasterxml.jackson.annotation.JsonFormat;
  import com.fasterxml.jackson.annotation.JsonIgnore;
  
  import javax.persistence.*;
  import java.util.Date;
  import java.util.List;
  
  /**
   * etunicorn-server
   * Copyright © 2017 Le Club Info Polytech Lille
   * Tous droits réservés
   */
  @Entity
  public class Evenement {
      @Id
      @GeneratedValue(strategy = GenerationType.AUTO)
      private int id;
  
      @Column(unique = true)
      private String nom;
  
      private float prix;
  
      private Date date;
  
      @ManyToMany(mappedBy = "participations")
      private List<Personne> participants;
  
      public Evenement(String nom) {
          this.nom = nom;
      }
  
      public int getId() {
          return id;
      }
  
      public void setId(int id) {
          this.id = id;
      }
  
      public String getNom() {
          return nom;
      }
  
      public void setNom(String nom) {
          this.nom = nom;
      }
  
      public float getPrix() {
          return prix;
      }
  
      public void setPrix(float prix) {
          this.prix = prix;
      }
  
      @JsonFormat(pattern = "YYYY-MM-DD hh:mm:ss")
      public Date getDate() {
          return date;
      }
  
      public void setDate(Date date) {
          this.date = date;
      }
  
      @JsonIgnore
      public List<Personne> getParticipants() {
          return participants;
      }
  
      public void setParticipants(List<Personne> participants) {
          this.participants = participants;
      }
  }