<?php

namespace app\abutment\model;

use think\Model;

//供应商账号关联
class SupplierRelationUser extends Model
{
    protected $table = 'sys_supplier_relation_user';
    protected $pk = 'id';
    protected $autoWriteTimestamp = false;
    protected $connection = 'mysql_sys';

    public static $is_del_normal = 0;//未删除
    public static $is_del_deleted = 1;//已删除

    public static $status_normal = 1;//状态,启用
    public static $status_disabled = 0;//状态,禁用


}