You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
964 B

5 years ago
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Request\v3;
  4. use App\Request\BaseFormRequest;
  5. class SearchGoodsRequest extends BaseFormRequest
  6. {
  7. /**
  8. * Get the validation rules that apply to the request.
  9. */
  10. public function rules(): array
  11. {
  12. return [
  13. 'market_id' => 'required|nonempty|integer',
  14. 'type_id' => 'nonempty',
  15. 'goods_category_ids' => 'nonempty',
  16. 'store_id' => 'nonempty|integer',
  17. 'keyword' => 'nonempty',
  18. 'order_by' => 'nonempty|in:default,sales,price',
  19. 'sort' => 'nonempty|in:asc,desc',
  20. 'page' => 'nonempty|integer',
  21. 'pagesize' => 'nonempty|integer',
  22. ];
  23. }
  24. /**
  25. * @return array
  26. */
  27. public function messages(): array
  28. {
  29. return [
  30. '*.*' => ':attribute无效',
  31. ];
  32. }
  33. public function attributes(): array
  34. {
  35. return parent::attributes();
  36. }
  37. }