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.
48 lines
1.8 KiB
48 lines
1.8 KiB
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package db;
|
|
|
|
/**
|
|
*
|
|
* @author dneves
|
|
*/
|
|
public interface EstatisticasConstants
|
|
{
|
|
public static final String[] KEY_NAMES = new String[] {
|
|
"POR", "Nome", "Ano Ocorrência", "Data Ocorrência", "Hora Ocorrência", "Horas Trabalhadas no Turno",
|
|
/*"Departamento", */"Estabelecimento", "Secção", "Causas do Acidente", "Turno de Trabalho", "Formação SHST",
|
|
"Participado \u00e0 Seguradora"
|
|
//TODO: falta os 2 ultimos
|
|
};
|
|
|
|
public static final String KEY_POR = "acidentados.numero_mecanografico";
|
|
public static final String KEY_NOME = "acidentados.nome";
|
|
|
|
public static final String KEY_ANO_OCORRENCIA = "date_part( 'year', analises_acidentes.data_acidente )";
|
|
public static final String KEY_DATA_OCORRENCIA = "analises_acidentes.data_acidente";
|
|
public static final String KEY_HORA_OCORRENCIA = "analises_acidentes.hora_acidente";
|
|
public static final String KEY_HORAS_TRABALHADAS = "analises_acidentes.horas_turno";
|
|
|
|
// public static final String KEY_DEPARTAMENTO = "departamentos.descricao";
|
|
public static final String KEY_ESTABELECIMENTO = "analises_acidentes.estabelecimento_id";
|
|
public static final String KEY_SECCAO = "analises_acidentes.seccao_id";
|
|
|
|
public static final String KEY_CAUSAS_ACIDENTE = "analises_acidentes.causas";
|
|
|
|
public static final String KEY_TURNO_TRABALHO = "acidentados.turno";
|
|
|
|
public static final String KEY_FORMACAO_SHST = "analises_acidentes.formacao_shst";
|
|
|
|
public static final String KEY_PARTICIPADO_SEGURO = "analises_acidentes.participado";
|
|
|
|
public static final String KEY_POSTO_ACIDENTADO = "posto_acidentado";
|
|
public static final String KEY_OUTROS_ACIDENTADOS = "outros_acidentados";
|
|
|
|
|
|
public static final String KEY_STYLE_COLUMN_HEADER = "columnHeader";
|
|
public static final String KEY_STYLE_COLUMN_NORMAL = "columnNormal";
|
|
}
|