Blame view

src/main/java/etunicorn/entity/Consommation.java 753 Bytes
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
  package etunicorn.entity;
  
  import javax.persistence.*;
  
  /**
   * etunicorn-server
   * Copyright © 2017 Le Club Info Polytech Lille
   * Tous droits réservés
   */
  @Entity
  public class Consommation {
      @Id
      @GeneratedValue(strategy = GenerationType.AUTO)
      private int id;
  
      @Column(unique = true)
      private String nom;
  
      private float prix;
  
      public Consommation() {
      }
  
      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;
      }
  }