new_naweigete/crmeb/app/services/wechat/WechatKeyServices.php
2025-03-13 09:24:48 +08:00

41 lines
1.3 KiB
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
// +----------------------------------------------------------------------
// | 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;
}
}