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