最新服务器上的版本,以后用这个
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 "{{%city_preview_order}}".
9  *
10  * @property int $id
11  * @property array $result_data
12  * @property array $order_info
13  * @property array $all_order_info
14  * @property string $order_detail_sign
15  * @property string $created_at
16  */
17 class CityPreviewOrder extends \app\models\ModelActiveRecord
18 {
19     /**
20      * {@inheritdoc}
21      */
22     public static function tableName()
23     {
24         return '{{%city_preview_order}}';
25     }
26
27     /**
28      * {@inheritdoc}
29      */
30     public function rules()
31     {
32         return [
33             [['result_data', 'order_info', 'created_at', 'all_order_info'], 'safe'],
34             [['order_detail_sign'], 'string'],
35         ];
36     }
37
38     /**
39      * {@inheritdoc}
40      */
41     public function attributeLabels()
42     {
43         return [
44             'id' => 'ID',
45             'result_data' => 'Result Data',
46             'order_info' => 'Order Info',
47             'all_order_info' => 'All Order Info',
48             'order_detail_sign' => 'Order Detail Sign',
49             'created_at' => 'Created At',
50         ];
51     }
52 }