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
18 lines
367 B
package com.example.demo.mapper.coin;
|
|
|
|
import com.example.demo.domain.entity.Rate;
|
|
import com.example.demo.domain.vo.coin.RateDetail;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
@Mapper
|
|
public interface RateMapper {
|
|
|
|
List<RateDetail> selectAll();
|
|
|
|
Rate selectById(Integer id);
|
|
|
|
void update(Rate rate);
|
|
|
|
void add(Rate rate);
|
|
}
|