| 123456789101112131415161718192021222324252627282930 | <?phpnamespace app\common\model;use think\Model;class ThirdOauth extends Model{    // 表名    protected $name = 'shop_third_oauth';    // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [    ];    public function user()    {        return $this->belongsTo("User", 'user_id', 'id')->setEagerlyType(0);    }}
 |