12345678910111213 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class Service extends Model
- {
- protected $connection = 'mysql_z';
- protected $table='service';
- protected $fillable = ['uid','phone','war_names'];
- public $timestamps = false;//关闭自动维护
- }
|