package com.newfiber.api.pc.service.impl; import com.baomidou.mybatisplus.service.impl.ServiceImpl; import com.newfiber.api.pc.dao.WarnLevelInfoMapper; import com.newfiber.api.pc.model.entity.WarnLevelInfo; import com.newfiber.api.pc.service.WarnLevelInfoService; import org.springframework.stereotype.Service; /** * @ClassName WarnLevelInfoServiceImpl * @Description TODO * @Author 张鸿志 * @Date 15:21 * Version 1.0 **/ @Service public class WarnLevelInfoServiceImpl extends ServiceImpl<WarnLevelInfoMapper, WarnLevelInfo> implements WarnLevelInfoService { }