mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-13 11:52:51 +00:00
92 lines
2.8 KiB
PHP
92 lines
2.8 KiB
PHP
<?php
|
|
namespace app\core\model\routine;
|
|
|
|
|
|
use basic\ModelBasic;
|
|
use traits\ModelTrait;
|
|
|
|
/**
|
|
* 小程序二维码Model
|
|
* Class RoutineQrcode
|
|
* @package app\core\model\routine
|
|
*/
|
|
class RoutineQrcode extends ModelBasic {
|
|
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* TODO 添加二维码 存在直接获取
|
|
* @param int $thirdId
|
|
* @param string $thirdType
|
|
* @param string $page
|
|
* @param string $qrCodeLink
|
|
* @return array|false|object|\PDOStatement|string|\think\Model
|
|
* @throws \think\Exception
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function routineQrCodeForever($thirdId = 0,$thirdType = 'spread',$page = '',$qrCodeLink = ''){
|
|
$count = self::where('third_id',$thirdId)->where('third_type',$thirdType)->count();
|
|
if($count) return self::where('third_id',$thirdId)->where('third_type',$thirdType)->field('id')->find();
|
|
return self::setRoutineQrcodeForever($thirdId,$thirdType,$page,$qrCodeLink);
|
|
}
|
|
|
|
/**
|
|
* 添加二维码记录
|
|
* @param string $thirdType
|
|
* @param int $thirdId
|
|
* @return object
|
|
*/
|
|
public static function setRoutineQrcodeForever($thirdId = 0,$thirdType = 'spread',$page = '',$qrCodeLink = ''){
|
|
$data['third_type'] = $thirdType;
|
|
$data['third_id'] = $thirdId;
|
|
$data['status'] = 0;
|
|
$data['add_time'] = time();
|
|
$data['page'] = $page;
|
|
$data['url_time'] = '';
|
|
$data['qrcode_url'] = $qrCodeLink;
|
|
return self::set($data);
|
|
}
|
|
|
|
/**
|
|
* 修改二维码地址
|
|
* @param int $id
|
|
* @param array $data
|
|
* @return bool
|
|
*/
|
|
public static function setRoutineQrcodeFind($id = 0,$data = array()){
|
|
if(!$id) return false;
|
|
$count = self::getRoutineQrcodeFind($id);
|
|
if(!$count) return false;
|
|
return self::edit($data,$id,'id');
|
|
}
|
|
|
|
/**
|
|
* 获取二维码是否存在
|
|
* @param int $id
|
|
* @return int|string
|
|
*/
|
|
public static function getRoutineQrcodeFind($id = 0){
|
|
if(!$id) return 0;
|
|
return self::where('id',$id)->count();
|
|
}
|
|
|
|
/**
|
|
* 获取小程序二维码信息
|
|
* @param int $id
|
|
* @param string $field
|
|
* @return array|bool|false|\PDOStatement|string|\think\Model
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function getRoutineQrcodeFindType($id = 0,$field = 'third_type,third_id,page'){
|
|
if(!$id) return false;
|
|
$count = self::getRoutineQrcodeFind($id);
|
|
if(!$count) return false;
|
|
return self::where('id',$id)->where('status',1)->field($field)->find();
|
|
}
|
|
|
|
|
|
} |