You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.2 KiB

<?php
namespace app\models;
use app\models\common\admin\log\CommonActionLog;
use Yii;
/**
* This is the model class for table "{{%level}}".
*
* @property integer $id
* @property integer $store_id
* @property integer $level
* @property string $name
* @property string $money
* @property string $discount
* @property integer $status
* @property integer $is_delete
* @property integer $addtime
* @property string $image
* @property string $price
* @property string $detail
* @property string $buy_prompt
* @property string $synopsis
*/
class Level extends \yii\db\ActiveRecord
{
/**
* 会员禁用状态:禁用
*/
const STATUS_FALSE = 0;
/**
* 会员禁用状态:启用
*/
const STATUS_TRUE = 1;
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%level}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['store_id', 'level', 'status', 'is_delete', 'addtime'], 'integer'],
[['money', 'discount', 'price'], 'number'],
[['image', 'synopsis'], 'string'],
[['name', 'detail', 'buy_prompt'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'store_id' => 'Store ID',
'level' => 'Level',
'name' => '等级名称',
'money' => '会员完成订单金额满足则升级',
'discount' => '折扣',
'status' => '状态 0--禁用 1--启用',
'is_delete' => 'Is Delete',
'addtime' => 'Addtime',
'image' => '升级 图片',
'price' => '升级 所需价格',
'detail' => '会员介绍',
'buy_prompt' => '会员购买提示',
'synopsis' => '内容',
];
}
public function afterSave($insert, $changedAttributes)
{
$data = $insert ? json_encode($this->attributes) : json_encode($changedAttributes);
CommonActionLog::storeActionLog('', $insert, $this->is_delete, $data, $this->id);
}
}