xhPicture.php 531 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "xhPicture".
  6. *
  7. * @property integer $id
  8. * @property integer $sjId
  9. * @property integer $categoryId
  10. * @property integer $categoryType
  11. * @property string $mobileUrl
  12. * @property string $mobileUrlBig
  13. * @property string $pcUrl
  14. * @property string $pcUrlBig
  15. * @property integer $addTime
  16. */
  17. class XhPicture extends xhBaseModel
  18. {
  19. /**
  20. * @inheritdoc
  21. */
  22. public static function tableName()
  23. {
  24. return 'xhPicture';
  25. }
  26. }