thinkphp-wechat/application/common/model/UserRelation.php
Wenbin.Wang d49c9fde59 代码
2021-12-24 16:40:05 +08:00

23 lines
402 B
PHP

<?php
namespace app\common\model;
use think\Model;
class UserRelation extends Model
{
protected $table = 'wc_user_relation';
// 状态:正常
const STATUS_ACTIVE = 1;
// 状态:解除
const STATUS_INVALID = 2;
/**
* 关联用户
* @return \think\model\relation\BelongsTo
*/
public function user()
{
return $this->belongsTo('User');
}
}