Files
sbnews/server/app/common/model/lottery/LotteryGame.php
T
2026-06-11 12:15:29 +08:00

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');
}
}