package cn.wisenergy.chnmuseum.party.service.impl; import cn.wisenergy.chnmuseum.party.model.TInteraction; import cn.wisenergy.chnmuseum.party.mapper.TInteractionMapper; import cn.wisenergy.chnmuseum.party.service.TInteractionService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.beans.factory.annotation.Autowired; import javax.annotation.Resource; /** * <pre> * 看板互动 服务实现类 * </pre> * * @author Danny Lee * @since 2021-03-23 */ @Slf4j @Service public class TInteractionServiceImpl extends ServiceImpl<TInteractionMapper, TInteraction> implements TInteractionService { @Resource private TInteractionMapper tInteractionMapper; }