Departamento.java 1.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
package com.roshka.modelo;

import java.util.List;

import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;

12 13
import com.fasterxml.jackson.annotation.JsonManagedReference;

14 15 16 17 18 19 20 21 22
@Entity
@Table(name="departamento")
public class Departamento {
    @Id
    private Long id;
    @Column(name="nombre")
    private String nombre;
    
    @OneToMany(mappedBy = "departamento",cascade = CascadeType.ALL)
23
    @JsonManagedReference
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
    private List<Ciudad> ciudad;



    public Long getId() {
        return this.id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getNombre() {
        return this.nombre;
    }

    public void setNombre(String nombre) {
        this.nombre = nombre;
    }

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

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




    
}