123456789101112131415161718 |
- <?php
- /**
- * Created by PhpStorm.
- * User: shensong
- * Date: 2019/11/13
- * Time: 15:28
- */
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class FxCustomer extends Model
- {
- public $timestamps = false;
- protected $table = 'fx_customers';
- }
|