NodeCertificate.php 237 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 伪装域名证书.
  6. */
  7. class NodeCertificate extends Model
  8. {
  9. protected $table = 'node_certificate';
  10. protected $fillable = ['domain', 'key', 'pem'];
  11. }