mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 23:19:05 +00:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\NodeCertificate
|
|
*
|
|
* @property int $id
|
|
* @property string $domain 域名
|
|
* @property string|null $key 域名证书KEY
|
|
* @property string|null $pem 域名证书PEM
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
* @method static Builder|NodeCertificate newModelQuery()
|
|
* @method static Builder|NodeCertificate newQuery()
|
|
* @method static Builder|NodeCertificate query()
|
|
* @method static Builder|NodeCertificate whereCreatedAt($value)
|
|
* @method static Builder|NodeCertificate whereDomain($value)
|
|
* @method static Builder|NodeCertificate whereId($value)
|
|
* @method static Builder|NodeCertificate whereKey($value)
|
|
* @method static Builder|NodeCertificate wherePem($value)
|
|
* @method static Builder|NodeCertificate whereUpdatedAt($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class NodeCertificate extends Model {
|
|
protected $table = 'node_certificate';
|
|
protected $primaryKey = 'id';
|
|
}
|