<?php // +---------------------------------------------------------------------- // | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ] // +---------------------------------------------------------------------- // | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved. // +---------------------------------------------------------------------- // | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权 // +---------------------------------------------------------------------- // | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397 // +---------------------------------------------------------------------- namespace service; use app\admin\model\wechat\WechatQrcode as QrcodeModel; class QrcodeService { /** * 获取临时二维码 单个 * */ public static function getTemporaryQrcode($type, $id) { return QrcodeModel::getTemporaryQrcode($type, $id)->toArray(); } /** * 获取永久二维码 单个 * */ public static function getForeverQrcode($type, $id) { return QrcodeModel::getForeverQrcode($type, $id)->toArray(); } public static function getQrcode($id, $type = 'id') { return QrcodeModel::getQrcode($id, $type); } public static function scanQrcode($id, $type = 'id') { return QrcodeModel::scanQrcode($id, $type); } }