最新服务器上的版本,以后用这个
commit | author | age
2207d6 1 <?php
W 2
3 namespace app\models;
4
5 use Yii;
6
7 /**
8  * This is the model class for table "{{%goods_service_relation}}".
9  *
10  * @property int $id
11  * @property int $service_id
12  * @property int $goods_id
13  * @property int $is_delete
14  */
15 class GoodsServiceRelation extends ModelActiveRecord
16 {
17     /**
18      * {@inheritdoc}
19      */
20     public static function tableName()
21     {
22         return '{{%goods_service_relation}}';
23     }
24
25     /**
26      * {@inheritdoc}
27      */
28     public function rules()
29     {
30         return [
31             [['service_id', 'goods_id'], 'required'],
32             [['service_id', 'goods_id', 'is_delete'], 'integer'],
33         ];
34     }
35
36     /**
37      * {@inheritdoc}
38      */
39     public function attributeLabels()
40     {
41         return [
42             'id' => 'ID',
43             'service_id' => 'Service ID',
44             'goods_id' => 'Goods ID',
45             'is_delete' => 'Is Delete',
46         ];
47     }
48 }