IEventService.java 232 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 package vion.service.monitor; import com.baomidou.mybatisplus.extension.service.IService; import vion.model.monitor.Event; /** * @author vion * @date 2024/10/31 */ public interface IEventService extends IService<Event>{ }