package com.isu.gaswellwatch.service; import com.baomidou.mybatisplus.extension.service.IService; import com.isu.gaswellwatch.vo.SwitchStatusExport; import java.util.List; public interface SwitchStatusExportService extends IService { List getSwitchStatusExport(String startTime, String endTime); }