| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "{{%FLOW_REMAIN_PV}}".
- *
- * @property string $ID
- * @property string $USER_ID 会员ID
- * @property int $REMAIN_PV_FLOW 剩余BV FLOW
- * @property int $UPDATED_AT 更新时间
- * @property varchar $ORDER_SN 订单SN号
- */
- class FlowRemainPv extends \common\components\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%FLOW_REMAIN_PV}}';
- }
- }
|