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 "{{%auth_role}}".
9  *
10  * @property int $id
11  * @property int $creator_id 创建者ID
12  * @property int $mall_id
13  * @property string $name
14  * @property string $remark 角色描述、备注
15  * @property string $created_at
16  * @property string $updated_at
17  * @property string $deleted_at
18  * @property int $is_delete
19  */
20 class AuthRole extends ModelActiveRecord
21 {
22     /**
23      * {@inheritdoc}
24      */
25     public static function tableName()
26     {
27         return '{{%auth_role}}';
28     }
29
30     /**
31      * {@inheritdoc}
32      */
33     public function rules()
34     {
35         return [
36             [['creator_id', 'mall_id', 'created_at', 'updated_at', 'deleted_at'], 'required'],
37             [['creator_id', 'mall_id', 'is_delete'], 'integer'],
38             [['created_at', 'updated_at', 'deleted_at'], 'safe'],
39             [['name'], 'string', 'max' => 64],
40             [['remark'], 'string', 'max' => 255],
41         ];
42     }
43
44     /**
45      * {@inheritdoc}
46      */
47     public function attributeLabels()
48     {
49         return [
50             'id' => 'ID',
51             'creator_id' => 'Creator ID',
52             'mall_id' => 'Mall ID',
53             'name' => 'Name',
54             'remark' => 'Remark',
55             'created_at' => 'Created At',
56             'updated_at' => 'Updated At',
57             'deleted_at' => 'Deleted At',
58             'is_delete' => 'Is Delete',
59         ];
60     }
61
62     public function getUser()
63     {
64         return $this->hasOne(User::className(), ['id' => 'creator_id']);
65     }
66
67     public function getPermissions() {
68         return $this->hasOne(AuthRolePermission::className(), ['role_id' => 'id']);
69     }
70 }