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