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