-
Notifications
You must be signed in to change notification settings - Fork 0
/
Materiales.java
78 lines (58 loc) · 1.8 KB
/
Materiales.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package models;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Column;
import javax.persistence.Id;
@Entity
@Table (name = "materiales")
public class Materiales {
//Nombramiento de cada columna de la tabla Equipos
@Id
@Column(name = "id_material")
private Integer id_material;
@Column(name="nombre_material")
private String nombre_material;
@Column(name="tipo_material")
private String tipo_material;
@Column(name="descripcion_material")
private String descripcion_material;
@Column(name="cantidad")
private Integer cantidad;
public Materiales () { //Constructor vacio, siempre es imporatante dejarlo
}
public Integer getId_material() {
return id_material;
}
public void setId_material(Integer id_material) {
this.id_material = id_material;
}
public String getNombre_material() {
return nombre_material;
}
public void setNombre_material(String nombre_material) {
this.nombre_material = nombre_material;
}
public String getTipo_material() {
return tipo_material;
}
public void setTipo_material(String tipo_material) {
this.tipo_material = tipo_material;
}
public String getDescripcion_material() {
return descripcion_material;
}
public void setDescripcion_material(String descripcion_material) {
this.descripcion_material = descripcion_material;
}
public Integer getCantidad() {
return cantidad;
}
public void setCantidad(Integer cantidad) {
this.cantidad = cantidad;
}
@Override
public String toString() {
return "Materiales [id_material=" + id_material + ", nombre_material=" + nombre_material + ", tipo_material="
+ tipo_material + ", descripcion_material=" + descripcion_material + ", cantidad=" + cantidad + "]";
}
}