Files
ProxyPanel/app/Models/NodeCertificate.php
兔姬桑 265fced5e2 WebApi Bate & more
1. 完善 laravel5.8框架文件;
2. 按照VentPanel开发的WebApi Bate;
3. bug修复与优化
4. WebApi 授权相关界面;
2020-08-05 03:20:39 +08:00

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';
}