| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "xhPictureCategory".
- *
- * @property integer $id
- * @property integer $sjId
- * @property string $name
- * @property integer $type
- */
- class XhPictureCategory extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhPictureCategory';
- }
- }
|