PointLog.php 237 B

12345678910
  1. <?php
  2. namespace App\Models;
  3. class PointLog extends BaseModel
  4. {
  5. const CREATED_AT = 'create_time';
  6. protected $table="pointlog";
  7. const UPDATED_AT = 'update_time';
  8. public $timestamps = true;
  9. protected $primaryKey="id";
  10. }