LandSowValidation.php 349 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Module\AppGame\Validations;
  3. use UCore\ValidationCore;
  4. class LandSowValidation extends ValidationCore
  5. {
  6. public function rules(array $rules = []): array
  7. {
  8. $rules[]=[
  9. 'land_id,user_item_id','required'
  10. ];
  11. return parent::rules($rules); // TODO: Change the autogenerated stub
  12. }
  13. }