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.

WechatMenuDao.php 320B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\dao\wechat;
  3. use app\dao\BaseDao;
  4. use app\model\other\Cache;
  5. /**
  6. * Class WechatMenuDao
  7. * @package app\dao\wechat
  8. */
  9. class WechatMenuDao extends BaseDao
  10. {
  11. /**
  12. * 设置模型
  13. * @return string
  14. */
  15. public function setModel(): string
  16. {
  17. return Cache::class;
  18. }
  19. }