QappUserRententionLog.php 294 B

12345678910111213141516
  1. <?php
  2. namespace App\Modules\User\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappUserRententionLog extends Model
  5. {
  6. protected $table = 'qapp_user_rentention_logs';
  7. protected $fillable = [
  8. 'date',
  9. 'uid',
  10. 'register_time',
  11. 'read_time',
  12. ];
  13. }