| 123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- use think\Model;
- /**
- * 分组模型
- */
- class Users extends Model
- {
- public function getByGroup($group=0){
- if ($group){
- return $this->where(['group_id'=>$group])->select();
- }else{
- return $this->all();
- }
- }
- public function groupinfo(){
- return $this->belongsTo('Groups','group_id','id');
- }
- }
|