21 lines
344 B
PHP
21 lines
344 B
PHP
<?php
|
|
namespace App\Model;
|
|
|
|
// use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* 代理
|
|
* @author
|
|
*
|
|
*/
|
|
class ShopAgent extends BaseModel
|
|
{
|
|
// use SoftDeletes;
|
|
protected $table = 'shop_agent';
|
|
protected $primaryKey = 'agent_id';
|
|
protected $guarded = [];
|
|
|
|
const SHOP_AGENT_STATUS = ['1'=>'正常','0'=>'关闭'];
|
|
}
|
|
|