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

41 lines
714 B

4 years ago
4 years ago
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. /** @var int 交易金 */
  18. const DEPOSIT = 7;
  19. public static function array(): array
  20. {
  21. return [
  22. self::CHARGE => '微信支付手续费',
  23. self::CUT => '抽成',
  24. self::ORDER => '订单结算',
  25. self::WITHDRAWAL => '提现',
  26. self::WITHDRAWAL_CAT => '提现手续费',
  27. self::REFUND => '退款',
  28. self::DEPOSIT => '扣交易金',
  29. ];
  30. }
  31. }