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