course/app/common/model/Background.php

20 lines
320 B
PHP
Raw Normal View History

2024-07-24 22:13:26 +08:00
<?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
{
}