26 lines
381 B
PHP
Executable File
26 lines
381 B
PHP
Executable File
<?php
|
|
/**
|
|
* @createtime 2023/4/26
|
|
* @author wild
|
|
* @copyright PhpStorm
|
|
*/
|
|
|
|
|
|
namespace App\Model\Zq;
|
|
|
|
|
|
use App\Enums\SaleState;
|
|
use App\Model\BaseModel;
|
|
|
|
class BjdcSfggResult extends BaseModel
|
|
{
|
|
/**
|
|
* 是否取消比赛
|
|
* @return bool
|
|
*/
|
|
public function canceled()
|
|
{
|
|
return $this->sfgg_field == '' && $this->sfgg_odds == 1;
|
|
}
|
|
}
|