| 12345678910111213141516171819202122232425262728293031323334 | <?phpnamespace app\common\model;use think\Model;/** * 赠送礼物模型 */class GiftUserParty extends Model{    // 开启自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    public function user()    {        return $this->belongsTo('app\common\model\User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0);    }    public function toUser()    {        return $this->belongsTo('app\common\model\User', 'user_to_id', 'id', [], 'LEFT')->setEagerlyType(0);    }    public function party()    {        return $this->belongsTo('app\common\model\Party', 'party_id', 'id', [], 'LEFT')->setEagerlyType(0);    }}
 |