PesticideList.php 233 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\validate;
  3. class PesticideList extends \think\Validate
  4. {
  5. protected $rule = [
  6. 'qydm' => 'require',
  7. ];
  8. protected $message = [
  9. 'qydm.require' => '不能为空',
  10. ];
  11. }