hyingbo
2025-06-09 6a51939700a2fdc5c58ad076302217c4a42625d6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.MdcEquipmentThreshold;
import org.jeecg.modules.mdc.mapper.MdcEquipmentThresholdMapper;
import org.jeecg.modules.mdc.service.IMdcEquipmentThresholdService;
import org.springframework.stereotype.Service;
 
/**
 * @Description: 设备参数阈值表
 * @Author: Lius
 * @Date:   2023-11-08
 * @Version: V1.0
 */
@Service
public class MdcEquipmentThresholdServiceImpl extends ServiceImpl<MdcEquipmentThresholdMapper, MdcEquipmentThreshold> implements IMdcEquipmentThresholdService {
 
}