You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package com.example.demo.mapper.live;
import com.example.demo.domain.vo.bean.BeanConsumeGold; import com.example.demo.domain.vo.bean.BeanConsumeLive; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param;
import java.util.List;
/** * @program: gold-java * @ClassName liveMapper * @description: * @author: Ethan * @create: 2025−08-01 17:20 * @Version 1.0 **/ @Mapper public interface LiveMapper { //筛选查询直播消费列表
List<BeanConsumeLive> selectLiveBy(@Param("beanConsumeLive") BeanConsumeLive beanConsumeLive); //获取直播礼物列表
List<String> getLiveGift(); //获取直播频道列表
List<String> getLiveChannel(); //计算直播消费金豆合计数
BeanConsumeGold selectSumLiveBy(@Param("beanConsumeLive") BeanConsumeLive beanConsumeLive); //获取直播客户地区
List<String> getDept(); //获取直播消费列表总数
int selectLiveCount(BeanConsumeLive beanConsumeLive); }
|