20 lines
326 B
PHP
20 lines
326 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use App\BaseApp\BaseModel;
|
||
|
|
use Illuminate\Database\Eloquent\Relations\HasOne;
|
||
|
|
|
||
|
|
class CodeGenerationModel extends BaseModel
|
||
|
|
{
|
||
|
|
|
||
|
|
protected $table = 'code_generation';
|
||
|
|
/**
|
||
|
|
* The attributes that are mass assignable.
|
||
|
|
*
|
||
|
|
* @var list<string>
|
||
|
|
*/
|
||
|
|
protected $guarded = [];
|
||
|
|
|
||
|
|
}
|