40 lines
680 B
PHP
40 lines
680 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Created by Reliese Model.
|
||
|
*/
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
/**
|
||
|
* Class PaliersConfigNanoCredit
|
||
|
*
|
||
|
* @property int $id
|
||
|
* @property int $duree_mois
|
||
|
* @property float $taux
|
||
|
* @property int $idConfig
|
||
|
*
|
||
|
* @package App\Models
|
||
|
*/
|
||
|
class PaliersConfigNanoCredit extends Model
|
||
|
{
|
||
|
protected $table = 'paliersConfigNanoCredit';
|
||
|
public $incrementing = false;
|
||
|
public $timestamps = false;
|
||
|
|
||
|
protected $casts = [
|
||
|
'id' => 'int',
|
||
|
'duree_mois' => 'int',
|
||
|
'taux' => 'float',
|
||
|
'idConfig' => 'int'
|
||
|
];
|
||
|
|
||
|
protected $fillable = [
|
||
|
'duree_mois',
|
||
|
'taux',
|
||
|
'idConfig'
|
||
|
];
|
||
|
}
|