1234567891011121314151617181920 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 用户银行表 Table<ai_allwin_bank_cash>
- */
- namespace app\allwin\model;
- use think\Model;
- class BankCash extends Model{
-
- protected $pk = 'id';
- protected $table = 'ai_allwin_bank_cash';
-
- //用户
- public function user(){
- return $this->hasOne('app\common\model\SystemUser','id','user_id');
- }
- }
|