RemainPv.php 402 B

12345678910111213141516171819202122
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "{{%REMAIN_PV}}".
  6. *
  7. * @property string $USER_ID 会员ID
  8. * @property int $REMAIN_PV 剩余BV
  9. * @property int $UPDATED_AT 更新时间
  10. */
  11. class RemainPv extends \common\components\ActiveRecord
  12. {
  13. /**
  14. * @inheritdoc
  15. */
  16. public static function tableName()
  17. {
  18. return '{{%REMAIN_PV}}';
  19. }
  20. }