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