You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
393 B

  1. <?php
  2. namespace App\Constants\v3;
  3. use Hyperf\Constants\AbstractConstants;
  4. use Hyperf\Constants\Annotation\Constants;
  5. /**
  6. * @Constants
  7. */
  8. class Withdrawal extends AbstractConstants
  9. {
  10. /**
  11. * @Message("待审核")
  12. */
  13. const EXAMINE = 1;
  14. /**
  15. * @Message("已通过")
  16. */
  17. const ACCEPT = 2;
  18. /**
  19. * @Message("已拒绝")
  20. */
  21. const REFUSE = 3;
  22. }