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