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.
34 lines
1.1 KiB
34 lines
1.1 KiB
/*
|
|
* MedicinaConstants.java
|
|
*
|
|
* Created on 6 de Julho de 2006, 15:22
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.medicina;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public interface MedicinaConstants
|
|
{
|
|
public static final int MOTIVO_ADMISSAO = 1;
|
|
public static final Integer MOTIVO_ADMISSAO_INTEGER = new Integer( MOTIVO_ADMISSAO );
|
|
public static final int MOTIVO_PERIODICO = 2;
|
|
public static final Integer MOTIVO_PERIODICO_INTEGER = new Integer( MOTIVO_PERIODICO );
|
|
public static final int MOTIVO_OCASIONAL = 3;
|
|
public static final Integer MOTIVO_OCASIONAL_INTEGER = new Integer( MOTIVO_OCASIONAL );
|
|
public static final int MOTIVO_PERIODICO_INICIAL = 5;
|
|
public static final Integer MOTIVO_PERIODICO_INICIAL_INTEGER = new Integer( MOTIVO_PERIODICO_INICIAL );
|
|
|
|
public static final int ESTADO_POR_REALIZAR = 0;
|
|
public static final int ESTADO_PARCIALMENTE_REALIZADO = 1;
|
|
public static final int ESTADO_REALIZADO = 2;
|
|
public static final int ESTADO_DESMARCADO_TRABALHADOR = 3;
|
|
public static final int ESTADO_DESMARCADO_EMPRESA = 4;
|
|
public static final int ESTADO_FALTOU = 5;
|
|
}
|