quanwei
2025-11-21 1db9a4130699636cabe7e0c9f7f15d004aadada0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
 
namespace app\common\enum\plus\vip;
/**
 * VIP专区订单类型
 */
class VipAreaTypeEnum
{
    const NORMAL = 10; // 推广
    const REFERRAL = 20; // 推广复购
    const VIP_SUBSIDY = 30; // VIP专区补贴
    const DIRECT_REFEREE = 40; // 平台直推佣金
 
    /**
     * 获取VIP专区订单类型名称
     * @return array
     */
    public static function getTypeName()
    {
        return [
            self::NORMAL => '推广',
            self::REFERRAL => '推广复购',
            self::VIP_SUBSIDY => 'VIP专区收益补贴',
            self::DIRECT_REFEREE => '平台直推佣金',
        ];
    }
 
}