TCourseBoardLinkServiceImpl.java 819 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.service.impl;
lidashuai's avatar
lidashuai committed
2

liqin's avatar
liqin committed
3 4 5
import cn.chnmuseum.party.model.TCourseBoardLink;
import cn.chnmuseum.party.mapper.TCourseBoardLinkMapper;
import cn.chnmuseum.party.service.TCourseBoardLinkService;
lidashuai's avatar
lidashuai committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
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;

}