You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
605 B
Java

package com.supervision.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.supervision.domain.IrRobotConfig;
import com.supervision.service.IrRobotConfigService;
import com.supervision.mapper.IrRobotConfigMapper;
import org.springframework.stereotype.Service;
/**
* @author flevance
* @description 针对表【ir_robot_config(机器人配置)】的数据库操作Service实现
* @createDate 2024-03-21 13:14:43
*/
@Service
public class IrRobotConfigServiceImpl extends ServiceImpl<IrRobotConfigMapper, IrRobotConfig>
implements IrRobotConfigService{
}