tp3.2关联模型 BELONGS_TO

<?php

namespace Home\Model;

use Think\Model\RelationModel;

class AttenModel extends RelationModel {
protected $tableName = 'attention';
protected $_link = array(
'BabyUser' => array(
'mapping_type' => self::BELONGS_TO,
'foreign_key' => 'bid',
),
);
}

posted @ 2016-05-17 17:36  rickon  阅读(466)  评论(0编辑  收藏  举报