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

25 lines
369 B

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. public static function array(): array
  12. {
  13. return [
  14. self::CHARGE => '微信支付手续费',
  15. self::CUT => '抽成',
  16. self::ORDER => '订单结算',
  17. ];
  18. }
  19. }