Newer
Older
huludao / src / main / java / com / newfiber / api / pc / service / impl / MeetAlertMediaServiceImpl.java
@新烽开发者 新烽开发者 on 19 Jul 639 bytes init
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 {
}