AlipayVoucherEnum.php 612 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace common\expand\alipay\transfer\enums;
  3. class AlipayVoucherEnum
  4. {
  5. const VOUCHER_TYPE_ALL = 'ALL';
  6. const VOUCHER_TYPE_ITEM = 'ITEM';
  7. const PROMO_TYPE_FIX = 'FIX';
  8. const PROMO_TYPE_DISCOUNT = 'DISCOUNT';
  9. const PROMO_TYPE_SPECIAL = 'SPECIAL';
  10. const VOUCHER_TYPE_REMARKS = [
  11. self::VOUCHER_TYPE_ALL => '全场券',
  12. self::VOUCHER_TYPE_ITEM => '单品券',
  13. ];
  14. const PROMO_TYPE_REMARKS = [
  15. self::PROMO_TYPE_FIX => '代金券',
  16. self::PROMO_TYPE_DISCOUNT => '折扣券',
  17. self::PROMO_TYPE_SPECIAL => '特价券',
  18. ];
  19. }