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.

80 lines
2.0 KiB

<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "{{%pond}}".
*
* @property integer $id
* @property integer $store_id
* @property integer $type
* @property integer $num
* @property string $price
* @property string $image_url
* @property integer $stock
* @property integer $orderby
* @property integer $coupon_id
* @property integer $gift_id
* @property integer $create_time
* @property integer $update_time
* @property string $attr
* @property string $name
*/
class Pond extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%pond}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['store_id'], 'required'],
[['store_id', 'type', 'num', 'stock', 'orderby', 'coupon_id', 'gift_id', 'create_time', 'update_time'], 'integer'],
[['price'], 'number'],
[['image_url', 'attr', 'name'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'store_id' => 'Store ID',
'type' => '1.红包2.优惠卷3.积分4.实物.5.无',
'num' => '积分数量',
'price' => '红包价格',
'image_url' => '图片',
'stock' => '库存',
'orderby' => '排序',
'coupon_id' => '优惠卷',
'gift_id' => '赠品',
'create_time' => 'Create Time',
'update_time' => 'Update Time',
'attr' => '规格',
'name' => '别名'
];
}
public function getCoupon()
{
return $this->hasOne(Coupon::className(), ['id' => 'coupon_id']);
}
public function getGift()
{
return $this->hasOne(Goods::className(), ['id' => 'gift_id']);
}
}