-
Notifications
You must be signed in to change notification settings - Fork 0
/
Producto.java
61 lines (48 loc) · 1.22 KB
/
Producto.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
package CRUD;
/**
* Write a description of class Producto here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Producto
{
// instance variables - replace the example below with your own
int codigo; // Código del producto, se utiliza para buscar
String nombre; // Nombre un texto
int stock; // existencia actuales
int stock_min; // Número mínimo de existencias recomedadas
float precio; // Precio
/**
* Constructor for objects of class Producto
*/
public Producto ( int codigo, String nombre){
this.codigo = codigo;
this.nombre = nombre;
}
public int getCodigo (){
return codigo;
}
@Override
public String toString(){
return codigo +":"+ nombre +":"+ stock;
}
public int getStock(){
return stock;
}
public void setStock( int valor ){
stock = valor;
}
public int getStock_min(){
return stock_min;
}
public void setStock_min( int valor ){
stock_min = valor;
}
public float getPrecio(){
return precio;
}
public void setPrecio( float valor ){
precio = valor;
}
}