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 getMessage(List markets); void update(Integer id) throws Exception; }