GoodsCustom.php 1.0 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Models\Goods;
  3. use App\Base\BaseModel;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. /**
  6. * App\Models\Goods\GoodsCustom
  7. *
  8. * @property int $id
  9. * @property string $title
  10. * @property \Illuminate\Support\Carbon|null $created_at
  11. * @property \Illuminate\Support\Carbon|null $updated_at
  12. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom newModelQuery()
  13. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom newQuery()
  14. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom query()
  15. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom whereCreatedAt($value)
  16. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom whereId($value)
  17. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom whereTitle($value)
  18. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom whereUpdatedAt($value)
  19. * @mixin \Eloquent
  20. */
  21. class GoodsCustom extends BaseModel
  22. {
  23. protected $table = "goods_custom";
  24. }