Release inicial 1.0.0
This commit is contained in:
22
Models/RiesgoPuesto.php
Normal file
22
Models/RiesgoPuesto.php
Normal file
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Koneko\SatCatalogs\Models;
|
||||
|
||||
class RiesgoPuesto
|
||||
{
|
||||
// Definición de constantes para Riesgo de Puesto
|
||||
const RIESGO_PUESTO_CLASE_I = '1';
|
||||
const RIESGO_PUESTO_CLASE_II = '2';
|
||||
const RIESGO_PUESTO_CLASE_III = '3';
|
||||
const RIESGO_PUESTO_CLASE_IV = '4';
|
||||
const RIESGO_PUESTO_CLASE_V = '5';
|
||||
|
||||
public static $riesgoPuesto = [
|
||||
self::RIESGO_PUESTO_CLASE_I => 'Clase I',
|
||||
self::RIESGO_PUESTO_CLASE_II => 'Clase II',
|
||||
self::RIESGO_PUESTO_CLASE_III => 'Clase III',
|
||||
self::RIESGO_PUESTO_CLASE_IV => 'Clase IV',
|
||||
self::RIESGO_PUESTO_CLASE_V => 'Clase V'
|
||||
];
|
||||
|
||||
}
|
Reference in New Issue
Block a user