| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\admin\model;
- use app\common\model\WxappCategory as WxappCategoryModel;
- /**
- * 微信小程序分类页模板
- * Class WxappCategory
- * @package app\store\model
- */
- class WxappCategory extends WxappCategoryModel
- {
- /**
- * 新增分类页模板
- * @param $wxapp_id
- * @return false|int
- */
- public function insertDefault($wxapp_id)
- {
- return $this->save([
- 'wxapp_id' => $wxapp_id,
- 'category_style' => '11',
- 'share_title' => '',
- ]);
- }
- }
|