SystemInfoModel.php 239 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SystemInfoModel extends Model
  5. {
  6. protected $table = 'system_info';
  7. protected $fillable = [
  8. 'user_id',
  9. 'other_id',
  10. 'coin',
  11. ];
  12. }