Type.php 315 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\api\validate;
  3. use think\Validate;
  4. class Type extends Validate
  5. {
  6. protected $rule = [
  7. 'type_id' => 'number|between:1,' . PHP_INT_MAX,
  8. ];
  9. protected $message = [
  10. ];
  11. protected $scene = [
  12. 'get_list' => [
  13. 'type_id',
  14. ],
  15. ];
  16. }