You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
638 B
32 lines
638 B
<?php
|
|
|
|
namespace App\Model\v3;
|
|
|
|
use App\Model\Model;
|
|
|
|
class ServiceEvaluate extends Model
|
|
{
|
|
/**
|
|
* @var string table name
|
|
*/
|
|
protected $table = 'lanzu_service_evaluate';
|
|
|
|
/**
|
|
* @var array 允许插入的属性
|
|
*/
|
|
protected $fillable = ['user_id', 'user_created_at', 'service_personnel_id', 'market_id', 'c_attitude', 'c_service', 'c_quality', 'c_average', 'content', 'is_new_user'];
|
|
|
|
/**
|
|
* 默认值
|
|
*/
|
|
protected $attributes = [];
|
|
|
|
/**
|
|
*
|
|
*/
|
|
protected $casts = [
|
|
'created_at' => 'datetime:Y-m-d h:i:s',
|
|
'updated_at' => 'datetime:Y-m-d h:i:s',
|
|
];
|
|
|
|
}
|