|
<?php
|
|
|
|
namespace App\Model;
|
|
|
|
use App\Enums\BoolEnum;
|
|
|
|
class LotteryType extends BaseModel
|
|
{
|
|
protected $table = 'lottery_type';
|
|
protected $primaryKey = 'id';
|
|
protected $guarded = [];
|
|
const LOTTERYTYPE_STATUS = [0=>'关闭',1=>'正常'];
|
|
|
|
public function getPlayTypes()
|
|
{
|
|
|
|
}
|
|
}
|