Files
huangjingfen/pro_v3.5.1/app/services/wechat/WechatMediaServices.php

29 lines
554 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\wechat;
use app\dao\wechat\WechatMediaDao;
use app\services\BaseServices;
use think\annotation\Inject;
/**
* Class WechatMediaServices
* @package app\services\wechat
* @mixin WechatMediaDao
*/
class WechatMediaServices extends BaseServices
{
/**
* @var WechatMediaDao
*/
#[Inject]
protected WechatMediaDao $dao;
}