QappNewUserPushTaskLog.php 337 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Modules\Push\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappNewUserPushTaskLog extends Model
  5. {
  6. protected $table = 'qapp_new_user_push_task_logs';
  7. protected $fillable = [
  8. 'task_id',
  9. 'app_id',
  10. 'uid',
  11. 'status',
  12. 'push_time',
  13. 'push_result',
  14. ];
  15. }