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.

18 lines
367 B

2 months ago
2 months ago
1 month ago
2 months ago
  1. package com.example.demo.mapper.coin;
  2. import com.example.demo.domain.entity.Rate;
  3. import com.example.demo.domain.vo.coin.RateDetail;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import java.util.List;
  6. @Mapper
  7. public interface RateMapper {
  8. List<RateDetail> selectAll();
  9. Rate selectById(Integer id);
  10. void update(Rate rate);
  11. void add(Rate rate);
  12. }