Files
huangjingfen/pro_v3.5.1/app/model/wechat/WechatQrcodeCate.php

37 lines
717 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
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);
}
}