BaseAttachment.php 293 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class BaseAttachment extends Model
  5. {
  6. //
  7. /**
  8. * 数据表名
  9. *
  10. * @var string
  11. *
  12. */
  13. protected $table = 'base_attachments';
  14. /**
  15. * 主键
  16. */
  17. protected $primaryKey = 'id';
  18. }