| 123456789101112131415161718 |
- <?php
- namespace app\validate\admin\profits;
- use app\validate\CommonValidate;
- class ExecuteProfitValidate extends CommonValidate
- {
- protected $failException = true;
- protected $rule = [
- 'zero_user_profit_id|日志id' => 'require',
- ];
- protected $message = [
- 'zero_user_profit_id.int' => '日志id类型错误',
- ];
- }
|