zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
commit | author | age
90c639 1 <?php
Z 2
3 namespace app\models;
4
5 use Yii;
6
7 /**
8  * This is the model class for table "{{%we7_app}}".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $acid 微擎应用的acid
13  * @property int $is_delete
14  */
15 class We7App extends ModelActiveRecord
16 {
17     /**
18      * {@inheritdoc}
19      */
20     public static function tableName()
21     {
22         return '{{%we7_app}}';
23     }
24
25     /**
26      * {@inheritdoc}
27      */
28     public function rules()
29     {
30         return [
31             [['mall_id', 'acid'], 'required'],
32             [['mall_id', 'acid', 'is_delete'], 'integer'],
33         ];
34     }
35
36     /**
37      * {@inheritdoc}
38      */
39     public function attributeLabels()
40     {
41         return [
42             'id' => 'ID',
43             'mall_id' => 'Mall ID',
44             'acid' => '微擎应用的acid',
45             'is_delete' => 'Is Delete',
46         ];
47     }
48
49     public function getMall()
50     {
51         return $this->hasOne(Mall::class, ['id' => 'mall_id']);
52     }
53 }