33 lines
552 B
PHP
33 lines
552 B
PHP
<?php
|
|
|
|
namespace plugin\admin\app\model;
|
|
|
|
use plugin\admin\app\model\Base;
|
|
|
|
/**
|
|
* @property integer $id (主键)
|
|
* @property string $url 背景图
|
|
* @property mixed $created_at
|
|
* @property string $updated_at
|
|
* @property string $deleted_at
|
|
*/
|
|
class Background extends Base
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'wa_background';
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = 'id';
|
|
|
|
|
|
|
|
}
|