16 lines
285 B
PHP
16 lines
285 B
PHP
<?php
|
|
|
|
namespace app\common\model\lottery;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class LotteryGame extends BaseModel
|
|
{
|
|
protected $name = 'lottery_game';
|
|
|
|
public function gameCategory()
|
|
{
|
|
return $this->belongsTo(LotteryGameCategory::class, 'category', 'value');
|
|
}
|
|
}
|