海南旅游SAAS
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.

37 lines
630 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. <?php
  2. namespace App\Common;
  3. class StatementType
  4. {
  5. /** @var int 微信支付手续费 */
  6. const CHARGE = 1;
  7. /** @var int 抽成 */
  8. const CUT = 2;
  9. /** @var int 订单结算 */
  10. const ORDER = 3;
  11. /** @var int 提现 */
  12. const WITHDRAWAL = 4;
  13. /** @var int 提现手续费 */
  14. const WITHDRAWAL_CAT = 5;
  15. /** @var int 退款 */
  16. const REFUND = 6;
  17. public static function array(): array
  18. {
  19. return [
  20. self::CHARGE => '微信支付手续费',
  21. self::CUT => '抽成',
  22. self::ORDER => '订单结算',
  23. self::WITHDRAWAL => '提现',
  24. self::WITHDRAWAL_CAT => '提现手续费',
  25. self::REFUND => '退款',
  26. ];
  27. }
  28. }