Lottery.php 461B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Lottery extends Model
  5. {
  6. protected $table = "bs_user_lotterys";
  7. protected $primaryKey = "lottery_id";
  8. public $timestamps = false;
  9. protected $fillable = [
  10. 'lottery_id','corp_id','activity_id','user_id','lottery_level','lottery_time','prize_id'
  11. ];
  12. public function prize()
  13. {
  14. return $this -> hasOne('App\Models\Prize','prize_id');
  15. }
  16. }