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