GoodsCustom.php 1.2 KB

1234567891011121314151617181920212223242526272829
  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. * @property string $en_title
  21. * @method static \Illuminate\Database\Eloquent\Builder|GoodsCustom whereEnTitle($value)
  22. */
  23. class GoodsCustom extends BaseModel
  24. {
  25. protected $table = "goods_custom";
  26. }