Service.php 281 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Service extends Model
  5. {
  6. protected $connection = 'mysql_z';
  7. protected $table='service';
  8. protected $fillable = ['uid','phone','war_names'];
  9. public $timestamps = false;//关闭自动维护
  10. }