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

  1. package com.example.demo.service;
  2. import com.example.demo.domain.entity.User;
  3. import com.example.demo.domain.vo.GoldDetail;
  4. import com.example.demo.domain.vo.Total;
  5. import com.github.pagehelper.PageInfo;
  6. /**
  7. * @program: GOLD
  8. * @ClassName GoldDetailService
  9. * @description:
  10. * @author: huangqizhen
  11. * @create: 202506-23 11:59
  12. * @Version 1.0
  13. **/
  14. public interface GoldDetailService {
  15. PageInfo<GoldDetail> getGoldDetail(Integer pageNum, Integer pageSize, GoldDetail goldDetail);
  16. Total getTotal(GoldDetail goldDetail);
  17. PageInfo<User> getGold(Integer pageNum, Integer pageSize, User user);
  18. Total GoldTotal(User user);
  19. }