12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models\Log;
- use App\Models\Model;
- /**
- * App\Models\Log\SignRewardLogModel
- *
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\SignRewardLogModel query()
- * @mixin \Eloquent
- */
- class SignRewardLogModel extends Model
- {
- protected $table = "kdgx_fpdx_sign_reward_log";
- public $timestamps = true;
- public const UPDATED_AT = null;
- protected $fillable = ['uid', 'reward', 'data'];
- }
|