Annex.php 359 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. class Annex extends Validate
  5. {
  6. protected $rule = [
  7. 'annex_file' => 'require',
  8. ];
  9. protected $message = [
  10. 'annex_file.require' => 'validate/require_name',
  11. ];
  12. protected $scene = [
  13. 'add' => ['annex_file'],
  14. 'edit' => ['annex_file'],
  15. ];
  16. }