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