12345678910111213141516 |
- <?php
- namespace App\Modules\User\Models;
- use Illuminate\Database\Eloquent\Model;
- class QappUserRententionLog extends Model
- {
- protected $table = 'qapp_user_rentention_logs';
- protected $fillable = [
- 'date',
- 'uid',
- 'register_time',
- 'read_time',
- ];
- }
|