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.
32 lines
1.1 KiB
32 lines
1.1 KiB
package com.example.demo.mapper.bean;
|
|
|
|
import com.example.demo.domain.vo.bean.BeanConsumeGold;
|
|
import com.example.demo.domain.vo.bean.BeanConsumeLive;
|
|
import com.example.demo.domain.vo.coin.RechargeAudit;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanConsumeMapper.xml
|
|
* @description:
|
|
* @author: Ethan
|
|
* @create: 2025−07-30 11:56
|
|
* @Version 1.0
|
|
**/
|
|
@Mapper
|
|
public interface BeanConsumeMapper {
|
|
//获取消费用户分部
|
|
List<String> getDept();
|
|
//筛选查询直播消费
|
|
List<BeanConsumeLive> selectLiveBy(@Param("beanConsumeLive") BeanConsumeLive beanConsumeLive);
|
|
//查询消费订单金额
|
|
List<BeanConsumeGold> selectConsumeGoldsBy(@Param("pageNum") Integer pageNum,
|
|
@Param("pageSize") Integer pageSize,
|
|
@Param("beanConsumeGold") BeanConsumeGold beanConsumeGold);
|
|
|
|
BeanConsumeGold selectSumLiveBy(@Param("beanConsumeLive") BeanConsumeLive beanConsumeLive);
|
|
}
|
|
|