GoodsSearch.php 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Models\Goods;
  3. use App\Base\BaseModel;
  4. /**
  5. * App\Models\Goods\GoodsSearch
  6. *
  7. * @property int $id
  8. * @property int $goods_id
  9. * @property string|null $content
  10. * @property \Illuminate\Support\Carbon|null $created_at
  11. * @property \Illuminate\Support\Carbon|null $updated_at
  12. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch whereContent($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch whereCreatedAt($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch whereGoodsId($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch whereId($value)
  19. * @method static \Illuminate\Database\Eloquent\Builder|GoodsSearch whereUpdatedAt($value)
  20. * @mixin \Eloquent
  21. */
  22. class GoodsSearch extends BaseModel
  23. {
  24. protected $table = "goods_search";
  25. protected $fillable = ["goods_id", "content"];
  26. }