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
450 B
21 lines
450 B
package com.example.demo.service.cash;
|
|
|
|
import com.example.demo.domain.vo.coin.Messages;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName MessageService
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−11-14 22:13
|
|
* @Version 1.0
|
|
**/
|
|
@Service
|
|
public interface MessageService {
|
|
List<Messages> getMessage(List<String> markets);
|
|
|
|
void update(Integer id) throws Exception;
|
|
}
|