package org.jeecg.modules.andon.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.andon.entity.AndonButtonConfig;
|
import org.jeecg.modules.andon.mapper.AndonButtonConfigMapper;
|
import org.jeecg.modules.andon.service.IAndonButtonConfigService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @Description: 安灯按钮配置
|
* @Author: jeecg-boot
|
* @Date: 2025-07-10
|
* @Version: V1.0
|
*/
|
@Service
|
public class AndonButtonConfigServiceImpl extends ServiceImpl<AndonButtonConfigMapper, AndonButtonConfig> implements IAndonButtonConfigService {
|
|
@Override
|
public AndonButtonConfig getAndonButtonById(String id) {
|
return baseMapper.getAndonButtonById(id);
|
}
|
}
|