feige
2025-06-23 8d0db2a5b91a38960855ab3f5ee3e92fe363e8e2
zhang-content/src/main/java/com/ruoyi/service/LiveStreamingService.java
@@ -5,12 +5,15 @@
import com.ruoyi.domain.LiveStreaming;
import org.springframework.stereotype.Service;
import java.text.ParseException;
import java.util.List;
public interface LiveStreamingService extends IService<LiveStreaming> {
    AjaxResult selectDataList(LiveStreaming liveStreaming, Integer pageNum, Integer pageSize);
    AjaxResult selectDataList(LiveStreaming liveStreaming, Integer pageNum, Integer pageSize) throws ParseException;
    List<LiveStreaming> selectByIds(Long[] ids);
    AjaxResult addData(LiveStreaming liveStreaming);
    AjaxResult addData(LiveStreaming liveStreaming) throws ParseException;
    public AjaxResult deleteData(Long[] ids);
}