hyingbo
6 天以前 e935889261ef38c8eaef31e54cbfc466d63d2ef4
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 {
 
}