chenhj
2026-04-24 ffe4413db421aabb7446007ff76d4e9943c6fc84
src/main/java/com/ruoyi/device/service/IDeviceLedgerService.java
@@ -8,8 +8,8 @@
import com.ruoyi.framework.web.domain.AjaxResult;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import jakarta.servlet.http.HttpServletResponse;
import java.io.IOException;
public interface IDeviceLedgerService  extends IService<DeviceLedger> {
    IPage<DeviceLedgerDto> queryPage(Page page, DeviceLedgerDto deviceLedger);
@@ -20,5 +20,5 @@
    void export(HttpServletResponse response, Long[] ids);
    Boolean importData(MultipartFile file);
    Boolean importData(MultipartFile file) throws IOException;
}