⭐️ 房间id + 竞拍id 总流水
⭐️ 流水明细
/**
* RTC 麦下送礼物支付
*/
public static final String RTC_UNDER_MAI_GIFT_PAID = "RTC_UNDER_MAI_GIFT_PAID";
service-rtc handleRtcGiftPaid() 增加拍卖房逻辑
语音房类型 RoomTypeEnum.AUCTION
PK 记录过滤主场比分 参与字段不对
service-message service-task
亲密度 守护榜单:根据亲密度排序
CREATE TABLE `tb_rtc_room_auction` (
`rtcRoomAuctionId` bigint(20) NOT NULL COMMENT '拍卖房记录id',
`roomId` bigint(20) NOT NULL COMMENT '房间ID',
`guestUserId` bigint(20) NOT NULL COMMENT '嘉宾用户ID',
`bidUserId` bigint(20) NOT NULL COMMENT '被拍卖用户id',
`bidItemId` bigint(20) NOT NULL COMMENT '拍卖物品id',
`bidItemName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '拍卖物品名称',
`bidDuration` int(11) NOT NULL COMMENT '拍卖时长(单位:天)',
`startingGiftId` bigint(20) NOT NULL COMMENT '起拍礼物id',
`startingGiftName` varchar(50) COLLATE utf8mb4_bin NOT NULL COMMENT '起拍礼物名称',
`startingGiftPrice` bigint(20) NOT NULL COMMENT '起拍礼物价格',
`bidUserCount` int(11) NOT NULL DEFAULT '0' COMMENT '竞拍人数',
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '竞拍状态',
`bidTotalPrice` bigint(20) DEFAULT '0' COMMENT '竞拍流水总和',
`winUserId` bigint(20) DEFAULT NULL COMMENT '中标用户id',
`highestBidPrice` bigint(20) DEFAULT NULL COMMENT '最高出价(单位:礼物价格)',
`highestBidUserId` bigint(20) DEFAULT NULL COMMENT '最高出价的用户id',
`endTime` bigint(20) DEFAULT NULL COMMENT '竞拍结束时间',
`createDate` int(11) DEFAULT NULL COMMENT '创建时间yyyyMMdd',
`createTime` bigint(20) NOT NULL COMMENT '创建时间',
`updateTime` bigint(20) NOT NULL COMMENT '更新时间',
`isDeleted` int(11) NOT NULL COMMENT '是否删除',
PRIMARY KEY (`rtcRoomAuctionId`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='拍卖房记录';
CREATE TABLE `tb_rtc_room_auction_his` (
`hisId` bigint(20) NOT NULL,
`rtcRoomAuctionId` bigint(20) NOT NULL COMMENT '拍卖房记录id',
`sendUserId` bigint(20) NOT NULL COMMENT '发送礼物用户id',
`receiveUserId` bigint(20) NOT NULL COMMENT '接收礼物用户id',
`giftId` bigint(20) NOT NULL COMMENT '礼物id',
`giftPrice` bigint(20) NOT NULL COMMENT '礼物价格',
`giftCount` int(11) NOT NULL COMMENT '礼物数量',
`giftTotalPrice` bigint(20) NOT NULL COMMENT '礼物总价格',
`createTime` bigint(20) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`hisId`),
KEY `rtcRoomAuctionIdIndex` (`rtcRoomAuctionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='拍卖房记录流水';