| 1234567891011121314151617181920 |
- package com.huimv.admin.service.impl;
- import com.huimv.admin.entity.GasThreshold;
- import com.huimv.admin.mapper.GasThresholdMapper;
- import com.huimv.admin.service.IGasThresholdService;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import org.springframework.stereotype.Service;
- /**
- * <p>
- * 气体阈值 服务实现类
- * </p>
- *
- * @author author
- * @since 2023-02-21
- */
- @Service
- public class GasThresholdServiceImpl extends ServiceImpl<GasThresholdMapper, GasThreshold> implements IGasThresholdService {
- }
|