| 1234567891011121314151617181920 |
- <?php
- namespace App\Module\AppGame\Validations;
- use UCore\ValidationCore;
- class LandSowValidation extends ValidationCore
- {
- public function rules(array $rules = []): array
- {
- $rules[]=[
- 'land_id,user_item_id','required'
- ];
- return parent::rules($rules); // TODO: Change the autogenerated stub
- }
- }
|