1
0

AccountLogValidate.php 458 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @author 林海涛
  4. * @date 2024/7/23 上午11:47
  5. */
  6. namespace app\workerapi\validate;
  7. use app\common\validate\BaseValidate;
  8. class AccountLogValidate extends \app\common\validate\BaseValidate
  9. {
  10. protected $rule = [
  11. 'month' => 'require',
  12. ];
  13. protected $message = [
  14. 'month.require' => '请输入年月',
  15. ];
  16. public function sceneMonthAccountWithCaseOutTotal()
  17. {
  18. return $this->only(['month']);
  19. }
  20. }