最新服务器上的版本,以后用这个
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 "zjhj_bd_video_number_data".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $mch_id
13  * @property string $type
14  * @property string $key
15  * @property string $value
16  * @property string $url
17  * @property string $created_at
18  * @property string $updated_at
19  * @property string $deleted_at
20  * @property int $is_delete
21  */
22 class VideoNumberData extends ModelActiveRecord
23 {
24     /**
25      * {@inheritdoc}
26      */
27     public static function tableName()
28     {
29         return '{{%video_number_data}}';
30     }
31
32     /**
33      * {@inheritdoc}
34      */
35     public function rules()
36     {
37         return [
38             [['mall_id', 'mch_id', 'is_delete'], 'integer'],
39             [['created_at', 'updated_at', 'deleted_at'], 'safe'],
40             [['type', 'key', 'value', 'url'], 'string', 'max' => 255],
41         ];
42     }
43
44     /**
45      * {@inheritdoc}
46      */
47     public function attributeLabels()
48     {
49         return [
50             'id' => 'ID',
51             'mall_id' => 'Mall ID',
52             'mch_id' => 'Mch ID',
53             'type' => 'Type',
54             'key' => 'Key',
55             'value' => 'Value',
56             'url' => 'Url',
57             'created_at' => 'Created At',
58             'updated_at' => 'Updated At',
59             'deleted_at' => 'Deleted At',
60             'is_delete' => 'Is Delete',
61         ];
62     }
63 }