MobilePriceLog.php 252 B

123456789101112131415
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class MobilePriceLog extends \app\common\model\MobilePriceLog
  5. {
  6. public function admin()
  7. {
  8. return $this->belongsTo('Admin', 'admin_id', 'id', [], 'LEFT')->setEagerlyType(0);
  9. }
  10. }