Release inicial 1.0.0

This commit is contained in:
2025-03-10 18:25:41 -06:00
commit ba2845242d
83 changed files with 309608 additions and 0 deletions

21
Models/Periodicidad.php Normal file
View File

@ -0,0 +1,21 @@
<?php
namespace Koneko\SatCatalogs\Models;
class Periodicidad
{
// Definición de constantes para c_periodicidad
const PERIODICIDAD_DIARIO = 1;
const PERIODICIDAD_SEMANAL = 2;
const PERIODICIDAD_QUINCENAL = 3;
const PERIODICIDAD_MENSUAL = 4;
const PERIODICIDAD_BIMESTRAL = 5;
public static $catalogo = [
self::PERIODICIDAD_DIARIO => 'Diario',
self::PERIODICIDAD_SEMANAL => 'Semanal',
self::PERIODICIDAD_QUINCENAL => 'Quincenal',
self::PERIODICIDAD_MENSUAL => 'Mensual',
self::PERIODICIDAD_BIMESTRAL => 'Bimestral',
];
}