SignRewardLogModel.php 651 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Models\Log;
  3. use App\Models\Model;
  4. /**
  5. * App\Models\Log\SignRewardLogModel
  6. *
  7. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel newModelQuery()
  8. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel newQuery()
  9. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel query()
  10. * @mixin \Eloquent
  11. */
  12. class SignRewardLogModel extends Model
  13. {
  14. protected $table = "kdgx_fpdx_sign_reward_log";
  15. public $timestamps = true;
  16. public const UPDATED_AT = null;
  17. protected $fillable = ['uid', 'reward', 'data'];
  18. }