Blame view

src/main/java/etunicorn/entity/Transaction.java 1.69 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  package etunicorn.entity;
  
  import com.fasterxml.jackson.annotation.JsonFormat;
  
  import javax.persistence.*;
  import java.util.Date;
  
  /**
   * etunicorn-server
   * Copyright © 2017 Le Club Info Polytech Lille
   * Tous droits réservés
   */
  @Entity
  public class Transaction {
      @Id
      @GeneratedValue(strategy = GenerationType.AUTO)
      private int id;
  
      private Date date;
  
      private float prix;
  
      @ManyToOne()
      private Personne acteur;
  
      @ManyToOne()
      private Personne participant;
  
      @ManyToOne
      private Consommation consommation;
  
      @ManyToOne
      private Evenement evenement;
  
      public Transaction() {
      }
  
      public int getId() {
          return id;
      }
  
      public void setId(int id) {
          this.id = id;
      }
  
      @JsonFormat(pattern = "YYYY-MM-DD hh:mm:ss")
      public Date getDate() {
          return date;
      }
  
      public void setDate(Date date) {
          this.date = date;
      }
  
      public float getPrix() {
          return prix;
      }
  
      public void setPrix(float prix) {
          this.prix = prix;
      }
  
      public Personne getActeur() {
          return acteur;
      }
  
      public void setActeur(Personne acteur) {
          this.acteur = acteur;
      }
  
      public Personne getParticipant() {
          return participant;
      }
  
      public void setParticipant(Personne participant) {
          this.participant = participant;
      }
  
      public Consommation getConsommation() {
          return consommation;
      }
  
      public void setConsommation(Consommation consommation) {
          this.consommation = consommation;
      }
  
      public Evenement getEvenement() {
          return evenement;
      }
  
      public void setEvenement(Evenement evenement) {
          this.evenement = evenement;
      }
  }