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

24 lines
415 B

  1. <?php
  2. namespace App\Common;
  3. /**
  4. * 结算方式常量
  5. * Class ClearingForm
  6. * @package App\Common
  7. */
  8. class Settlement
  9. {
  10. const INSTANT = 1; //即时到帐
  11. const APPOINT = 2; //约定到帐
  12. const FINISHED = 3; //完结自动到帐
  13. public static function array(): array
  14. {
  15. return [
  16. self::INSTANT => '即时到帐',
  17. self::APPOINT => '约定到帐',
  18. self::FINISHED => '完结自动到帐',
  19. ];
  20. }
  21. }