course/plugin/admin/app/model/Background.php
2024-07-24 22:13:26 +08:00

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';
}