forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
950 B
53 lines
950 B
/*
|
|
* Permissao.java
|
|
*
|
|
* Created on October 25, 2007, 4:40 PM
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package beans;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
*
|
|
* @author lluis
|
|
*/
|
|
public class Permissao implements Serializable
|
|
{
|
|
private Integer id;
|
|
private Integer user_id;
|
|
private Integer codigo_permissao;
|
|
|
|
/** Creates a new instance of Permissao */
|
|
public Permissao() {
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getUser_id() {
|
|
return user_id;
|
|
}
|
|
|
|
public void setUser_id(Integer user_id) {
|
|
this.user_id = user_id;
|
|
}
|
|
|
|
public Integer getCodigo_permissao() {
|
|
return codigo_permissao;
|
|
}
|
|
|
|
public void setCodigo_permissao(Integer codigo_permissao) {
|
|
this.codigo_permissao = codigo_permissao;
|
|
}
|
|
|
|
}
|