quanwei
7 days ago 30563323a53b0d0260c97d08a9e8bd4cc8227a95
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
29
30
31
32
33
34
35
36
37
38
39
<?php
 
namespace app\common\enum\plus\vip;
/**
 * VIP专区订单类型
 */
class VipAreaTypeEnum
{
    const NORMAL = 10; // 推广
    const REFERRAL = 20; // 推广复购
    const VIP_SUBSIDY = 30; // 下级收益补贴
    const DIRECT_REFEREE = 40; // 平台直推佣金
    const DIRECT_SUPPLIER = 50; // 直推供应商佣金
 
    const VIEWPOINT_MONEY = 60; // 见点佣金
    const DIFFERENTIALPRIZE=70;//级差
    const EQUALLEVELAWARD= 80;//平级奖
 
 
 
    /**
     * 获取VIP专区订单类型名称
     * @return array
     */
    public static function getTypeName()
    {
        return [
            self::NORMAL => '推广佣金',
            self::REFERRAL => '推广复购佣金',
            self::VIP_SUBSIDY => '下级收益补贴',
            self::DIRECT_REFEREE => '平台直推佣金',
            self::DIRECT_SUPPLIER => '直推商家佣金',
            self::VIEWPOINT_MONEY => '见点佣金',
            self::DIFFERENTIALPRIZE=> '级差奖',
            self::EQUALLEVELAWARD=> '平级奖',
        ];
    }
 
}