示例#1
0
 public function __construct($model = '\\Cute\\ORM\\Model', $table = '', $foreign_key = '', $another_foreign_key = '', $middle_table = '')
 {
     parent::__construct($model, $table, $foreign_key);
     $this->another_foreign_key = $another_foreign_key;
     $this->middle_table = $middle_table;
 }
示例#2
0
文件: cutelib.php 项目: jl9n/CuteLib
 function __construct($c = '\\Cute\\ORM\\Model', $M = '', $EC = '', $GF = '', $uE = '')
 {
     parent::__construct($c, $M, $EC);
     $this->another_foreign_key = $GF;
     $this->middle_table = $uE;
 }