23 lines
412 B
PHP
23 lines
412 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use app\BaseModel;
|
|
use support\Model;
|
|
|
|
/**
|
|
* wa_slideshow 轮播图
|
|
* @property integer $id (主键)
|
|
* @property string $img 轮播图
|
|
* @property integer $sort 排序(越大越靠前)
|
|
* @property mixed $created_at 创建时间
|
|
* @property string $updated_at 更新时间
|
|
* @property string $deleted_at 删除时间
|
|
*/
|
|
class Slideshow extends BaseModel
|
|
{
|
|
|
|
|
|
|
|
}
|