This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/admin/model/WxappHelp.php
2020-04-25 22:20:29 +08:00

30 lines
665 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\admin\model;
use app\common\model\WxappHelp as WxappHelpModel;
/**
* 小程序帮助中心
* Class WxappHelp
* @package app\admin\model
*/
class WxappHelp extends WxappHelpModel
{
/**
* 新增默认帮助
* @param $wxapp_id
* @return false|int
*/
public function insertDefault($wxapp_id)
{
return $this->save([
'title' => '关于小程序',
'content' => '小程序本身无需下载无需注册不占用手机内存可以跨平台使用响应迅速体验接近原生APP。',
'sort' => 100,
'wxapp_id' => $wxapp_id
]);
}
}