2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\model\wechat;
|
|
|
|
|
|
|
|
|
|
use crmeb\basic\BaseModel;
|
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 关键词
|
|
|
|
|
* Class WechatReply
|
|
|
|
|
* @package app\model\wechat
|
|
|
|
|
*/
|
|
|
|
|
class WechatQrcodeCate extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
use ModelTrait;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 数据表主键
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $pk = 'id';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 模型名称
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $name = 'wechat_qrcode_cate';
|
|
|
|
|
|
|
|
|
|
public function searchIsDelAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
if ($value !== '') $query->where('is_del', $value);
|
|
|
|
|
}
|
|
|
|
|
}
|