zm
2021-03-25 d84ff6053b22269a6c59dc005e9efb8de6595988
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 "{{%attachment_group}}".
9  *
10  * @property int $id
11  * @property int $mall_id
12  * @property int $mch_id
13  * @property string $name
14  * @property int $is_delete
15  * @property string $created_at
16  * @property string $updated_at
17  * @property string $deleted_at
18  * @property int $is_recycle;
19  * @property int $type;
20  */
21 class AttachmentGroup extends ModelActiveRecord
22 {
23     /**
24      * {@inheritdoc}
25      */
26     public static function tableName()
27     {
28         return '{{%attachment_group}}';
29     }
30
31     /**
32      * {@inheritdoc}
33      */
34     public function rules()
35     {
36         return [
37             [['mall_id', 'name'], 'required'],
38             [['mall_id', 'mch_id', 'is_delete', 'is_recycle', 'type'], 'integer'],
39             [['created_at', 'updated_at', 'deleted_at'], 'safe'],
40             [['name'], 'string', 'max' => 64],
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             'name' => 'Name',
54             'is_delete' => 'Is Delete',
55             'created_at' => 'Created At',
56             'updated_at' => 'Updated At',
57             'deleted_at' => 'Deleted At',
58             'is_recycle' => '是否加入回收站 0.否|1.是',
59             'type' => '0 图片 1商品',
60         ];
61     }
62 }