最新服务器上的版本,以后用这个
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_deliveryman}}".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $mch_id
13  * @property string $name 配送员名称
14  * @property string $mobile 联系方式
15  * @property int $is_delete
16  * @property string $created_at
17  * @property string $updated_at
18  */
19 class CityDeliveryman extends \app\models\ModelActiveRecord
20 {
21     /**
22      * {@inheritdoc}
23      */
24     public static function tableName()
25     {
26         return '{{%city_deliveryman}}';
27     }
28
29     /**
30      * {@inheritdoc}
31      */
32     public function rules()
33     {
34         return [
35             [['mall_id', 'mch_id', 'is_delete'], 'integer'],
36             [['name', 'mobile', 'is_delete', 'created_at', 'updated_at'], 'required'],
37             [['created_at', 'updated_at'], 'safe'],
38             [['name', 'mobile'], 'string', 'max' => 255],
39         ];
40     }
41
42     /**
43      * {@inheritdoc}
44      */
45     public function attributeLabels()
46     {
47         return [
48             'id' => 'ID',
49             'mall_id' => 'Mall ID',
50             'mch_id' => 'Mch ID',
51             'name' => '配送员名称',
52             'mobile' => '联系方式',
53             'is_delete' => 'Is Delete',
54             'created_at' => 'Created At',
55             'updated_at' => 'Updated At',
56         ];
57     }
58 }