ReferralLog.php 434 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 返利日志
  6. * Class ReferralLog
  7. * @package App\Http\Models
  8. */
  9. class ReferralLog extends Model
  10. {
  11. protected $table = 'referral_log';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'user_id',
  15. 'ref_user_id',
  16. 'order_id',
  17. 'amount',
  18. 'ref_amount',
  19. 'status',
  20. 'created_at'
  21. ];
  22. }