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.

22 lines
514 B

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