zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
commit | author | age
90c639 1 <?php
Z 2
3 namespace app\models;
4
5 use Yii;
6
7 /**
8  * This is the model class for table "{{%refund_address}}".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $mch_id
13  * @property string $name
14  * @property array $address
15  * @property string $address_detail
16  * @property string $mobile
17  * @property string $remark
18  * @property string $created_at
19  * @property string $updated_at
20  * @property string $deleted_at
21  * @property int $is_delete
22  */
23 class RefundAddress extends ModelActiveRecord
24 {
25     /**
26      * {@inheritdoc}
27      */
28     public static function tableName()
29     {
30         return '{{%refund_address}}';
31     }
32
33     /**
34      * {@inheritdoc}
35      */
36     public function rules()
37     {
38         return [
39             [['mall_id', 'created_at', 'updated_at', 'deleted_at'], 'required'],
40             [['mall_id', 'mch_id', 'is_delete'], 'integer'],
41             [['created_at', 'updated_at', 'deleted_at'], 'safe'],
42             [['name'], 'string', 'max' => 65],
43             [['address', 'mobile', 'remark', 'address_detail'], 'string', 'max' => 255],
44         ];
45     }
46
47     /**
48      * {@inheritdoc}
49      */
50     public function attributeLabels()
51     {
52         return [
53             'id' => 'ID',
54             'mall_id' => 'Mall ID',
55             'mch_id' => 'Mch ID',
56             'name' => 'Name',
57             'address' => 'Address',
58             'address_detail' => 'Address Detail',
59             'mobile' => 'Mobile',
60             'remark' => 'Remark',
61             'created_at' => 'Created At',
62             'updated_at' => 'Updated At',
63             'deleted_at' => 'Deleted At',
64             'is_delete' => 'Is Delete',
65         ];
66     }
67 }