package com.newfiber.api.pc.service.impl; import com.baomidou.mybatisplus.service.impl.ServiceImpl; import com.newfiber.api.pc.dao.MeetAlertInfoMapper; import com.newfiber.api.pc.model.meet.MeetAlertInfo; import com.newfiber.api.pc.service.MeetAlertInfoService; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @Author:zzh * @CreateDate:2020/11/27 15:39 * @Description: */ @Service @Transactional(rollbackFor = Exception.class) public class MeetAlertInfoServiceImpl extends ServiceImpl<MeetAlertInfoMapper,MeetAlertInfo> implements MeetAlertInfoService { }