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.
22 lines
433 B
22 lines
433 B
<?php
|
|
|
|
namespace App\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', 'content'];
|
|
|
|
/**
|
|
* 默认值
|
|
*/
|
|
protected $attributes = [];
|
|
|
|
}
|