no message
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user