| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhArticlePraise".
- *
- * @property integer $id
- * @property integer $aId
- * @property integer $userId
- */
- class xhArticlePraise extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhArticlePraise';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['aId', 'userId'], 'integer']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'aId' => 'A ID',
- 'userId' => 'User ID',
- ];
- }
- }
|