2021-11-18 17:57:04 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace app\model;
|
|
|
|
|
|
|
|
class Business extends Base
|
|
|
|
{
|
|
|
|
const state_reviewing = 0;
|
|
|
|
const state_on = 1;
|
|
|
|
const state_off = 2;
|
2021-11-24 14:41:24 +08:00
|
|
|
public function category()
|
|
|
|
{
|
|
|
|
return $this->hasOne(Category::class, 'id',"type");
|
|
|
|
}
|
2021-11-18 17:57:04 +08:00
|
|
|
}
|