35 lines
		
	
	
		
			856 B
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			856 B
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
namespace app\model;
 | 
						|
 | 
						|
use Exception;
 | 
						|
use think\exception\ValidateException;
 | 
						|
 | 
						|
class Account extends Base
 | 
						|
{
 | 
						|
 | 
						|
    public const type_consumer      = 0;//个人消费者
 | 
						|
    public const type_business      = 1;//商家
 | 
						|
    public const type_staff         = 2;//员工
 | 
						|
 | 
						|
    public const state_default         = 0;// 未提交
 | 
						|
    public const state_examineing      = 1 ;// 1审核中
 | 
						|
    public const state_fail            = 2;// 2拒绝
 | 
						|
    public const state_success         = 3;// 3审核通过
 | 
						|
 | 
						|
    public static  function allState(){
 | 
						|
        return [
 | 
						|
            self::state_default=>"未提交",
 | 
						|
            self::state_examineing=>"审核中",
 | 
						|
            self::state_fail=>"拒绝",
 | 
						|
            self::state_success=>"审核通过",
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function tag()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Tag::class,"id","tag_id");
 | 
						|
    }
 | 
						|
 | 
						|
}
 |