yaowanxin
2025-08-11 8238b458d6a3bec147fd4b639ed0427de7cf8be4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.measuringinstrumentledger.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.measuringinstrumentledger.pojo.MeasuringInstrumentLedgerRecord;
 
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
 
/**
 * @author :yys
 * @date : 2025/8/5 9:22
 */
public interface MeasuringInstrumentLedgerRecordService extends IService<MeasuringInstrumentLedgerRecord> {
 
    /**
     * 分页查询
     *
     * @param page
     * @param measuringInstrumentLedgerRecord
     * @return
     */
    IPage<MeasuringInstrumentLedgerRecord> listPage(Page page, MeasuringInstrumentLedgerRecord measuringInstrumentLedgerRecord);
 
    void export(HttpServletResponse response);
 
    boolean updateMeasuringInstrumentLedgerRecord(MeasuringInstrumentLedgerRecord measuringInstrumentLedgerRecord) throws IOException;
}