1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.mapper;
|
| import com.yuanchu.mom.pojo.FeMeasuredQuantity;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * <p>
| * 设施和环境条件-设施和环境条件要求-电源稳定性-测定量 Mapper 接口
| * </p>
| *
| * @author
| * @since 2024-11-07 04:16:44
| */
| public interface FeMeasuredQuantityMapper extends BaseMapper<FeMeasuredQuantity> {
|
| }
|
|