| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhUserTag".
- *
- * @property integer $id
- * @property integer $userId
- * @property integer $merchantId
- * @property integer $tagId
- */
- class xhUserTag extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhUserTag';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'userId', 'merchantId', 'tagId'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'userId' => 'User ID',
- 'merchantId' => 'Merchant ID',
- 'tagId' => 'Tag ID',
- ];
- }
- }
|