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.
22 lines
640 B
22 lines
640 B
package com.example.demo.service;
|
|
|
|
import com.example.demo.domain.entity.User;
|
|
import com.example.demo.domain.vo.GoldDetail;
|
|
import com.example.demo.domain.vo.Total;
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName GoldDetailService
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−06-23 11:59
|
|
* @Version 1.0
|
|
**/
|
|
public interface GoldDetailService {
|
|
PageInfo<GoldDetail> getGoldDetail(Integer pageNum, Integer pageSize, GoldDetail goldDetail);
|
|
Total getTotal(GoldDetail goldDetail);
|
|
|
|
PageInfo<User> getGold(Integer pageNum, Integer pageSize, User user);
|
|
Total GoldTotal(User user);
|
|
}
|