clqms-be/app/Models/OccupationModel.php

10 lines
228 B
PHP
Raw Normal View History

<?php
namespace App\Models;
2025-10-13 12:28:09 +07:00
class OccupationModel extends BaseUtcModel {
protected $table = 'occupation';
protected $primaryKey = 'OccupationID';
protected $allowedFields = ['OccCode', 'OccText', 'Description'];
}