1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models\Log;
- use Illuminate\Database\Eloquent\Model;
- /**
- * App\Models\Log\HomeRemindLog
- *
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog query()
- * @mixin \Eloquent
- */
- class HomeRemindLog extends Model
- {
- protected $table = "kdgx_home_remind_logs";
- public const UPDATED_AT = null;
- protected $fillable = array(
- 'uid',
- 'to_uid'
- );
- }
|