FlowRemainPv.php 494 B

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