You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
404 B
24 lines
404 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 微信小程序分类页模板
|
|
* Class WxappCategory
|
|
* @package app\common\model
|
|
*/
|
|
class WxappCategory extends BaseModel
|
|
{
|
|
protected $name = 'wxapp_category';
|
|
|
|
/**
|
|
* 分类模板详情
|
|
* @return static|null
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function detail()
|
|
{
|
|
return self::get([]);
|
|
}
|
|
|
|
}
|