IMAccountService.java 422 Bytes
package vion.service.monitor;

import com.github.yulichang.base.MPJBaseService;
import vion.model.monitor.MAccount;
import vion.model.monitor.RAccountEvent;

import java.util.List;

/**
 * @author vion
 * @date 2024/10/31
 */
public interface IMAccountService extends MPJBaseService<MAccount> {

    List<RAccountEvent> getEventById(String uid);

    String saveEvent(String agentUid, String uid, RAccountEvent event);

}