NodeCertificate.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Builder;
  4. use Illuminate\Database\Eloquent\Model;
  5. /**
  6. * 伪装域名证书
  7. *
  8. * @property int $id
  9. * @property string $domain 域名
  10. * @property string|null $key 域名证书KEY
  11. * @property string|null $pem 域名证书PEM
  12. * @property \Illuminate\Support\Carbon $created_at 创建时间
  13. * @property \Illuminate\Support\Carbon $updated_at 最后更新时间
  14. * @method static Builder|NodeCertificate newModelQuery()
  15. * @method static Builder|NodeCertificate newQuery()
  16. * @method static Builder|NodeCertificate query()
  17. * @method static Builder|NodeCertificate whereCreatedAt($value)
  18. * @method static Builder|NodeCertificate whereDomain($value)
  19. * @method static Builder|NodeCertificate whereId($value)
  20. * @method static Builder|NodeCertificate whereKey($value)
  21. * @method static Builder|NodeCertificate wherePem($value)
  22. * @method static Builder|NodeCertificate whereUpdatedAt($value)
  23. * @mixin \Eloquent
  24. */
  25. class NodeCertificate extends Model {
  26. protected $table = 'node_certificate';
  27. }