HomeRemindLog.php 627 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models\Log;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * App\Models\Log\HomeRemindLog
  6. *
  7. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog newModelQuery()
  8. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog newQuery()
  9. * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Log\HomeRemindLog query()
  10. * @mixin \Eloquent
  11. */
  12. class HomeRemindLog extends Model
  13. {
  14. protected $table = "kdgx_home_remind_logs";
  15. public const UPDATED_AT = null;
  16. protected $fillable = array(
  17. 'uid',
  18. 'to_uid'
  19. );
  20. }