| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id 主键(主键)
- * @property string $name 标题
- * @property string $img 封面图
- * @property string $describe 描述
- * @property string $txt 详情
- * @property integer $state 状态
- * @property integer $is_recommend 推荐
- * @property integer $article_type_id 文章类型
- * @property string $created_at 创建时间
- * @property string $updated_at 更新时间
- */
- class Article extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_article';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
-
-
-
- }
|