人人商城

unigroup.table.php 421B

123456789101112131415161718
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. class UnigroupTable extends We7Table {
  7. protected $tableName = 'uni_group';
  8. protected $primaryKey = 'id';
  9. public function uniaccounts() {
  10. return $this->belongsMany('account', 'uniacid', 'id', 'uni_account_group', 'uniacid', 'groupid');
  11. }
  12. }