PunishmentOrderRequest.php 430 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. *
  4. *
  5. * @category xxx
  6. * @package PSR
  7. * @subpackage Documentation\API
  8. * @author xxx <xxx@xxx.com>
  9. * @license GPL https://xxx.com
  10. * @link https://xxx.com
  11. * @ctime: 2020/5/19 9:56
  12. */
  13. namespace App\Http\Requests;
  14. use App\Validators\Rules;
  15. class PunishmentOrderRequest extends FormRequest
  16. {
  17. public function rules(){
  18. return [
  19. 'no' => Rules::no,
  20. ];
  21. }
  22. }