first commit

This commit is contained in:
zufeng555
2019-02-28 19:48:21 +08:00
commit 26f08a2fc3
6720 changed files with 739359 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2017/11/28
* Time: 17:44
*/
namespace app\common\model;
use think\Model;
class WxKeyword extends Model
{
//关键字类型
const TYPE_AUTO_REPLY = 'auto_reply';
public function wxReply()
{
return $this->belongsTo('WxReply', 'pid', 'id');
}
}