| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "xhPicture".
- *
- * @property integer $id
- * @property integer $sjId
- * @property integer $categoryId
- * @property integer $categoryType
- * @property string $mobileUrl
- * @property string $mobileUrlBig
- * @property string $pcUrl
- * @property string $pcUrlBig
- * @property integer $addTime
- */
- class XhPicture extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhPicture';
- }
- }
|