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