zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
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
30
31
32
33
34
package com.yuanchu.mom.mapper;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.yuanchu.mom.dto.FePowerStableDto;
import com.yuanchu.mom.dto.FePowerStableExportDto;
import com.yuanchu.mom.pojo.FePowerStable;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.Map;
import java.util.Objects;
 
/**
 * <p>
 * 设施和环境条件-设施和环境条件要求-电源稳定性 Mapper 接口
 * </p>
 *
 * @author 
 * @since 2024-11-07 04:16:52
 */
public interface FePowerStableMapper extends BaseMapper<FePowerStable> {
 
    IPage<FePowerStableDto> getLaboratoryFacilityPowerStablePage(Page page);
 
    Map<String, Objects> getCalibrationDate(Integer deviceId);
 
    /**
     * 查询电源稳定性
     * @param powerStableId
     * @return
     */
    FePowerStableExportDto selectPowerStable(@Param("powerStableId") Integer powerStableId);
}