ExecuteProfitValidate.php 352 B

123456789101112131415161718
  1. <?php
  2. namespace app\validate\admin\profits;
  3. use app\validate\CommonValidate;
  4. class ExecuteProfitValidate extends CommonValidate
  5. {
  6. protected $failException = true;
  7. protected $rule = [
  8. 'zero_user_profit_id|日志id' => 'require',
  9. ];
  10. protected $message = [
  11. 'zero_user_profit_id.int' => '日志id类型错误',
  12. ];
  13. }