package cn.wisenergy.chnmuseum.party.service.impl;
import cn.wisenergy.chnmuseum.party.model.TCourseBoardLink;
import cn.wisenergy.chnmuseum.party.mapper.TCourseBoardLinkMapper;
import cn.wisenergy.chnmuseum.party.service.TCourseBoardLinkService;
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;
/**
* <pre>
* 视频 服务实现类
* </pre>
*
* @author Danny Lee
* @since 2021-03-22
*/
@Slf4j
@Service
public class TCourseBoardLinkServiceImpl extends ServiceImpl<TCourseBoardLinkMapper, TCourseBoardLink> implements TCourseBoardLinkService {
@Autowired
private TCourseBoardLinkMapper tCourseBoardLinkMapper;
}
-
lidashuai authoredb61833b7