| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- class BusinessMember extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%business_member}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['name','image','bg_image'], 'required'],
- [['sort', 'give', 'give_coupon', 'give_verify','give_self','commission_type', 'right_status','get_type'], 'integer'],
- [['image', 'bg_image','coupon_info','verify_info','right_ids','right_info','right_default','sale_info'], 'string'],
- [['commission_one','commission_two','commission_three', 'self_info'],'number']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'name' => '会员卡名称',
- 'image' => '图片',
- 'bg_image' => '背景图片',
- 'get_type' => '获取方式',
- 'sale_info' => '购买详情',
- 'give' => '赠送开关',
- 'give_coupon' => '优惠券赠送开关',
- 'give_verify' => '核销卡赠送开关',
- 'give_self' => '自购返利',
- 'coupon_info' => '赠送优惠券信息',
- 'verify_info' => '赠送卡券信息',
- 'self_info' => '返利佣金',
- 'commission_type' => '佣金类型:1百分比 2固定金额',
- 'commission_one' => '一级佣金',
- 'commission_two' => '二级佣金',
- 'commission_three' => '三级佣金',
- 'right_status' => '权益开关',
- 'right_ids' => '权利ids',
- 'right_info' => '权益信息',
- 'right_default' => '权益详情',
- ];
- }
- }
|