xhPictureCategory.php 388 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "xhPictureCategory".
  6. *
  7. * @property integer $id
  8. * @property integer $sjId
  9. * @property string $name
  10. * @property integer $type
  11. */
  12. class XhPictureCategory extends xhBaseModel
  13. {
  14. /**
  15. * @inheritdoc
  16. */
  17. public static function tableName()
  18. {
  19. return 'xhPictureCategory';
  20. }
  21. }