83 lines
1.3 KiB
Plaintext
Executable File
83 lines
1.3 KiB
Plaintext
Executable File
package com.fp.frontend.controller.armas.solicitud;
|
|
|
|
public class ArmaEntidadReporte {
|
|
|
|
private Long numero;
|
|
private String clase;
|
|
private String tipo;
|
|
private String marca;
|
|
private String modelo;
|
|
private String calibre;
|
|
private String serie;
|
|
private String estado;
|
|
|
|
public ArmaEntidadReporte() {
|
|
}
|
|
|
|
public Long getNumero() {
|
|
return numero;
|
|
}
|
|
|
|
public void setNumero(Long numero) {
|
|
this.numero = numero;
|
|
}
|
|
|
|
public String getClase() {
|
|
return clase;
|
|
}
|
|
|
|
public void setClase(String clase) {
|
|
this.clase = clase;
|
|
}
|
|
|
|
public String getTipo() {
|
|
return tipo;
|
|
}
|
|
|
|
public void setTipo(String tipo) {
|
|
this.tipo = tipo;
|
|
}
|
|
|
|
public String getMarca() {
|
|
return marca;
|
|
}
|
|
|
|
public void setMarca(String marca) {
|
|
this.marca = marca;
|
|
}
|
|
|
|
public String getModelo() {
|
|
return modelo;
|
|
}
|
|
|
|
public void setModelo(String modelo) {
|
|
this.modelo = modelo;
|
|
}
|
|
|
|
public String getSerie() {
|
|
return serie;
|
|
}
|
|
|
|
public void setSerie(String serie) {
|
|
this.serie = serie;
|
|
}
|
|
|
|
public String getEstado() {
|
|
return estado;
|
|
}
|
|
|
|
public void setEstado(String estado) {
|
|
this.estado = estado;
|
|
}
|
|
|
|
public String getCalibre() {
|
|
return calibre;
|
|
}
|
|
|
|
public void setCalibre(String calibre) {
|
|
this.calibre = calibre;
|
|
}
|
|
|
|
|
|
}
|