Departamento.java 624 Bytes
Newer Older
1 2
package com.roshka.modelo;

3
import com.fasterxml.jackson.annotation.JsonManagedReference;
4 5
import lombok.Data;

6 7 8
import javax.persistence.*;
import java.util.List;

9
@Entity @Data
10 11 12 13
@Table(name="departamento")
public class Departamento {
    @Id
    private Long id;
14
    
15 16 17 18
    @Column(name="nombre")
    private String nombre;
    
    @OneToMany(mappedBy = "departamento",cascade = CascadeType.ALL)
19
    @JsonManagedReference
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    private List<Ciudad> ciudad;



    public List<Ciudad> getCiudad() {
        return this.ciudad;
    }

    public void setCiudad(List<Ciudad> ciudad) {
        this.ciudad = ciudad;
    }




    
}