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.
40 lines
1.3 KiB
40 lines
1.3 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\wechat;
|
|
|
|
|
|
use app\dao\wechat\WechatKeyDao;
|
|
use app\services\BaseServices;
|
|
|
|
/**
|
|
* 微信菜单
|
|
* Class WechatMenuServices
|
|
* @package app\services\wechat
|
|
* @method delete($id, ?string $key = null) 删除
|
|
* @method getOne(array $where) 获取一条数据
|
|
* @method count(array $where) 读取数据条数
|
|
* @method saveAll(array $where) 插入数据
|
|
* @method getColumn($where,$key) 获取某个字段数组
|
|
*/
|
|
class WechatKeyServices extends BaseServices
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* WechatMenuServices constructor.
|
|
* @param WechatKeyDao $dao
|
|
*/
|
|
public function __construct(WechatKeyDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
}
|
|
|