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

33 lines
557 B

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. public static function array(): array
  16. {
  17. return [
  18. self::CHARGE => '微信支付手续费',
  19. self::CUT => '抽成',
  20. self::ORDER => '订单结算',
  21. self::WITHDRAWAL => '提现',
  22. self::WITHDRAWAL_CAT => '提现手续费',
  23. ];
  24. }
  25. }