thinkphp 关联模型配置代码

<?php
/**
 * 公司与部门关联模型
 */
class CompanyRelationModel extends RelationModel{
    
    //主表名称
    protected $tableName = ‘company‘;
    
    //定义关联关系
    protected $_link = array(
            
        //关联表名称
        ‘department‘ => array(
            ‘mapping_type‘        =>     MANY_TO_MANY,                //多对多关系
            ‘foreign_key‘        =>    ‘company_id‘,                //主表外键
            ‘relation_key‘        =>    ‘department_id‘,            //关联表外键
            ‘relation_table‘    =>    ‘sys_company_department‘,    //中间表(员工对应角色表),
            ‘mapping_fields‘    =>     ‘id, name, pId‘                //关联表显示字段
        )
    );
    
}
?>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。