Files
cycle_api/app/Models/Api/Other/CustomerSettingModel.php
2024-03-25 06:15:36 +08:00

21 lines
363 B
PHP

<?php
namespace App\Models\Api\Other;
use App\Models\Api\Base\ApiBaseModel;
class CustomerSettingModel extends ApiBaseModel
{
protected $table = 'customer_setting';
protected $primaryKey = 'id';
protected $fillable = [
'id',
'name',
'value',
'customer_setting',
'created_at',
'updated_at',
];
}