InviteLogModel.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Models\Goodnight;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Goodnight\InviteLogModel
  6. *
  7. * @property int $id
  8. * @property \Illuminate\Support\Carbon $created_at 创建时间
  9. * @property \Illuminate\Support\Carbon $updated_at 更新时间
  10. * @property int $uid 用户
  11. * @property int $invite_uid 邀请用户
  12. * @property int $gnight_coin 晚安币
  13. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel newModelQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel newQuery()
  15. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel query()
  16. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereCreatedAt($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereGnightCoin($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereId($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereInviteUid($value)
  20. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereUid($value)
  21. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Goodnight\InviteLogModel whereUpdatedAt($value)
  22. * @mixin \Eloquent
  23. */
  24. class InviteLogModel extends Model
  25. {
  26. protected $table = 'kdgx_goodnight_invite_log';
  27. protected $fillable = ['id', 'created_at', 'updated_at', 'uid', 'invite_uid', 'gnight_coin'];
  28. protected $dateFormat = "U";
  29. }