xhQrcodeScene.php 641 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhQrcodeScene".
  5. *
  6. * @property integer $id
  7. * @property integer $sceneType
  8. */
  9. class xhQrcodeScene extends xhBaseModel
  10. {
  11. /**
  12. * @inheritdoc
  13. */
  14. public static function tableName()
  15. {
  16. return 'xhQrcodeScene';
  17. }
  18. /**
  19. * @inheritdoc
  20. */
  21. public function rules()
  22. {
  23. return [
  24. [['sceneType'], 'integer']
  25. ];
  26. }
  27. /**
  28. * @inheritdoc
  29. */
  30. public function attributeLabels()
  31. {
  32. return [
  33. 'id' => 'ID',
  34. 'sceneType' => 'Scene Type',
  35. ];
  36. }
  37. }