您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DepartamentoModel.php 395B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. use CodeIgniter\Model;
  4. class DepartamentoModel extends Model
  5. {
  6. protected $table = 'departamento';
  7. protected $primaryKey = 'iddepartamento';
  8. function getDepartamentos()
  9. {
  10. return $this->select(['iddepartamento', 'nombre'])
  11. ->where('status', '1')
  12. ->orderBy('nombre')
  13. ->findAll();
  14. }
  15. }