12345678910111213141516171819202122232425 |
- <?php
- namespace app\allwin\model;
- use think\Model;
- class MchIdUser extends Model{
-
- protected $pk = 'id';
- protected $table = 'ai_allwin_mch_user';
-
- public function store(){
- return $this->hasOne('AllwinStore','id','store_id');
- }
-
-
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
- }
|