SupplierPayment.php 392 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace app\admin\validate;
  3. use think\Validate;
  4. class SupplierPayment extends Validate
  5. {
  6. protected $failException = true;
  7. /**
  8. * 验证规则
  9. */
  10. protected $rule = [
  11. ];
  12. /**
  13. * 提示消息
  14. */
  15. protected $message = [
  16. ];
  17. /**
  18. * 验证场景
  19. */
  20. protected $scene = [
  21. 'add' => [],
  22. 'edit' => [],
  23. ];
  24. }