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

package com.example.demo.service.coin;
import com.example.demo.domain.entity.Rate;
import com.example.demo.domain.vo.coin.RateDetail;
import com.example.demo.domain.vo.coin.Result;
import com.github.pagehelper.PageInfo;
import java.util.List;
public interface RateService {
PageInfo<RateDetail> selectAll(Integer pageNum, Integer pageSize);
Rate selectById(Integer id);
void add(Rate rate);
Result update(Rate rate);
//获取货币列表
List<Rate> listRateName();
}