zm
2021-03-25 d84ff6053b22269a6c59dc005e9efb8de6595988
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
 
namespace app\models;
 
use Yii;
 
/**
 * This is the model class for table "{{%share_level}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property int $level 分销等级1~100
 * @property string $name 分销等级名称
 * @property int $condition_type 升级条件:1--下线用户数|2--累计佣金|3--已提现佣金
 * @property string $condition 下线用户数(人)|累计佣金数(元)|已提现佣金数(元)
 * @property int $price_type 分销佣金类型:1--百分比|2--固定金额
 * @property string $first 一级分销佣金数(元)
 * @property int $status 是否启用
 * @property int $is_delete
 * @property string $created_at
 * @property string $updated_at
 * @property string $deleted_at
 * @property string $second 二级分销佣金数(元)
 * @property string $third 三级分销佣金数(元)
 * @property int $is_auto_level 是否启用自动升级
 * @property string $rule 等级说明
 */
class ShareLevel extends \app\models\ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%share_level}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'created_at', 'updated_at', 'deleted_at'], 'required'],
            [['mall_id', 'level', 'condition_type', 'price_type', 'status', 'is_delete', 'is_auto_level'], 'integer'],
            [['condition', 'first', 'second', 'third'], 'number'],
            [['created_at', 'updated_at', 'deleted_at'], 'safe'],
            [['name', 'rule'], 'string', 'max' => 255],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'level' => '分销等级1~5',
            'name' => '分销等级名称',
            'condition_type' => '升级条件:1--下线用户数|2--累计佣金|3--已提现佣金|4--累计消费',
            'condition' => '下线用户数(人)|累计佣金数(元)|已提现佣金数(元)|累计消费金额(元)',
            'price_type' => '分销佣金类型:1--百分比|2--固定金额',
            'first' => '一级分销佣金数(元)',
            'status' => '是否启用',
            'is_delete' => 'Is Delete',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
            'deleted_at' => 'Deleted At',
            'second' => '二级分销佣金数(元)',
            'third' => '三级分销佣金数(元)',
            'is_auto_level' => '是否启用自动升级',
            'rule' => '等级说明',
        ];
    }
}