12 lines
305 B
PHP
12 lines
305 B
PHP
<?php
|
|
namespace app\common\model;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class WechatMerchant extends Model
|
|
{
|
|
protected $table = 'wechat_merchants';
|
|
protected $guarded = [];
|
|
protected $hidden = ['updated_at', 'api_v3_key', 'private_key_pem', 'apiclient_cert_path', 'apiclient_key_path'];
|
|
}
|