Ciudad.java 1.25 KB
Newer Older
1 2 3
package com.roshka.modelo;


4
import com.fasterxml.jackson.annotation.JsonBackReference;
5
import lombok.Data;
6

7 8
import javax.persistence.*;

9 10

@Entity @Data
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
@Table(name="ciudad")
public class Ciudad{
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY) 
    public Long id;

    @Column(name="nombre")
    public String nombre;
    @Column(name="departamento_id")
    private Long departamentoId;

    public Long getDepartamentoId() {
        return this.departamentoId;
    }

    public void setDepartamentoId(Long departamentoId) {
        this.departamentoId = departamentoId;
    }

    @ManyToOne(targetEntity = Departamento.class,fetch = FetchType.EAGER)
    @JoinColumn(name="departamento_id",insertable = false, updatable = false)
32
    @JsonBackReference
33 34
    private Departamento departamento;

35
/*
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    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;
    }
51
*/
52 53 54 55 56 57 58 59 60 61
    public Departamento getDepartamento() {
        return this.departamento;
    }

    public void setDepartamento(Departamento departamento) {
        this.departamento = departamento;
    }



62

63 64

}