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.
26 lines
722 B
26 lines
722 B
package com.example.demo.service.bean;
|
|
|
|
import com.example.demo.domain.vo.bean.BeanConsumeGold;
|
|
import com.example.demo.domain.vo.bean.BeanConsumeLive;
|
|
import com.example.demo.domain.vo.bean.BeanPage;
|
|
import com.example.demo.domain.vo.coin.Gold;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: gold-java
|
|
* @ClassName BeanConsumeService
|
|
* @description:
|
|
* @author: Ethan
|
|
* @create: 2025−07-30 11:53
|
|
* @Version 1.0
|
|
**/
|
|
|
|
public interface BeanConsumeService {
|
|
//获取消费用户的分部
|
|
List<String> getDept();
|
|
//筛选查询消费
|
|
Object selectLiveBy(Integer pageNum, Integer pageSize, BeanConsumeLive beanConsumeLive);
|
|
//消费金币合计数
|
|
BeanConsumeGold sumConsumeGold(BeanPage beanPage);
|
|
}
|