clqms-be/app/Models/OccupationModel.php
2025-10-13 12:28:09 +07:00

10 lines
228 B
PHP

<?php
namespace App\Models;
class OccupationModel extends BaseUtcModel {
protected $table = 'occupation';
protected $primaryKey = 'OccupationID';
protected $allowedFields = ['OccCode', 'OccText', 'Description'];
}