Advertisement
AllyssonAyslan

Turma.java

Sep 25th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package com.foosball.models;
  2.  
  3. import javax.persistence.Entity;
  4. import javax.persistence.Id;
  5.  
  6.  
  7. @Entity
  8. public class Turma {
  9.  
  10.     @Id
  11.     private String turma;
  12.  
  13.     public String getTurma() {
  14.         return turma;
  15.     }
  16.  
  17.     public void setTurma(String turma) {
  18.         this.turma = turma;
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement