zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
commit | author | age
90c639 1 <?php
Z 2
3 namespace app\models;
4
5 /**
6  * This is the model class for table "{{%goods_hot_search}}".
7  *
8  * @property int $id
9  * @property int $mall_id
10  * @property int $goods_id 商品id
11  * @property string $title 热搜词
12  * @property int $sort 排序
13  * @property string $type 类型
14  * @property int $is_delete
15  * @property string $created_at
16  * @property string $deleted_at
17  */
18 class GoodsHotSearch extends ModelActiveRecord
19 {
20     /**
21      * {@inheritdoc}
22      */
23     public const TYPE_GOODS = 'goods';
24     public const TYPE_HOT_SEARCH = 'hot-search';
25
26     public static function tableName()
27     {
28         return '{{%goods_hot_search}}';
29     }
30
31     /**
32      * {@inheritdoc}
33      */
34     public function rules()
35     {
36         return [
37             [['mall_id', 'goods_id', 'title', 'type', 'created_at', 'deleted_at'], 'required'],
38             [['mall_id', 'goods_id', 'sort', 'is_delete'], 'integer'],
39             [['created_at', 'deleted_at'], 'safe'],
40             [['title'], 'string', 'max' => 255],
41             [['type'], 'string', 'max' => 100],
42         ];
43     }
44
45     /**
46      * {@inheritdoc}
47      */
48     public function attributeLabels()
49     {
50         return [
51             'id' => 'ID',
52             'mall_id' => 'Mall ID',
53             'goods_id' => '商品id',
54             'title' => '热搜词',
55             'sort' => '排序',
56             'type' => '类型',
57             'is_delete' => 'Is Delete',
58             'created_at' => 'Created At',
59             'deleted_at' => 'Deleted At',
60         ];
61     }
62
63     public function getGoods()
64     {
65         return $this->hasOne(Goods::className(), ['id' => 'goods_id']);
66     }
67 }