20 lines
320 B
PHP
20 lines
320 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace app\common\model;
|
||
|
|
||
|
use app\BaseModel;
|
||
|
use support\Model;
|
||
|
|
||
|
/**
|
||
|
* wa_background 背景图
|
||
|
* @property integer $id (主键)
|
||
|
* @property string $url 背景图
|
||
|
* @property mixed $created_at
|
||
|
* @property string $updated_at
|
||
|
* @property string $deleted_at
|
||
|
*/
|
||
|
class Background extends BaseModel
|
||
|
{
|
||
|
|
||
|
}
|