123456789101112131415161718192021222324252627 |
- <?php
- namespace app\ais\model;
- use think\Model;
- class AisCardOrder extends Model{
- protected $pk = 'id';
-
-
- public function store(){
- return $this->hasOne('AisStore','id','store_id');
- }
-
-
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','uid');
- }
- }
|