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.

21 lines
498 B

5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
5 months ago
  1. package com.example.demo.service.coin;
  2. import com.example.demo.domain.entity.Rate;
  3. import com.example.demo.domain.vo.coin.RateDetail;
  4. import com.example.demo.domain.vo.coin.Result;
  5. import com.github.pagehelper.PageInfo;
  6. import java.util.List;
  7. public interface RateService {
  8. PageInfo<RateDetail> selectAll(Integer pageNum, Integer pageSize);
  9. Rate selectById(Integer id);
  10. void add(Rate rate);
  11. Result update(Rate rate);
  12. //获取货币列表
  13. List<Rate> listRateName();
  14. }