You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
388 B
23 lines
388 B
<?php
|
|
|
|
namespace app\project\model;
|
|
|
|
use app\base\model\Base;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
class ProjectCheck extends Base
|
|
{
|
|
use SoftDelete;
|
|
|
|
/**
|
|
* 获取是否审核阶段
|
|
* @date 2021-07-06
|
|
*/
|
|
public function isCheck(){
|
|
$where = [
|
|
['uid', '=', $this->mid]
|
|
];
|
|
return $this->where($where)->value('is_check');
|
|
}
|
|
}
|