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

  1. package com.example.demo.service.cash;
  2. import com.example.demo.domain.vo.coin.Messages;
  3. import org.springframework.stereotype.Service;
  4. import java.util.List;
  5. /**
  6. * @program: GOLD
  7. * @ClassName MessageService
  8. * @description:
  9. * @author: huangqizhen
  10. * @create: 202511-14 22:13
  11. * @Version 1.0
  12. **/
  13. @Service
  14. public interface MessageService {
  15. List<Messages> getMessage(List<String> markets);
  16. void update(Integer id) throws Exception;
  17. }