jingcai-php/app/Model/LotteryType.php

19 lines
300 B
PHP
Executable File

<?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()
{
}
}