最新服务器上的版本,以后用这个
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 "{{%mall_member_rights}}".
9  *
10  * @property int $id
11  * @property int $member_id
12  * @property string $title
13  * @property string $content
14  * @property string $pic_url
15  * @property int $is_delete
16  */
17 class MallMemberRights extends ModelActiveRecord
18 {
19     /**
20      * {@inheritdoc}
21      */
22     public static function tableName()
23     {
24         return '{{%mall_member_rights}}';
25     }
26
27     /**
28      * {@inheritdoc}
29      */
30     public function rules()
31     {
32         return [
33             [['member_id'], 'required'],
34             [['member_id', 'is_delete'], 'integer'],
35             [['title'], 'string', 'max' => 65],
36             [['content', 'pic_url'], 'string', 'max' => 255],
37         ];
38     }
39
40     /**
41      * {@inheritdoc}
42      */
43     public function attributeLabels()
44     {
45         return [
46             'id' => 'ID',
47             'member_id' => 'Member ID',
48             'title' => 'Title',
49             'content' => 'Content',
50             'pic_url' => 'Pic Url',
51             'is_delete' => 'Is Delete',
52         ];
53     }
54 }