package cn.chnmuseum.party.service.impl;

import cn.chnmuseum.party.model.LearningContent;
import cn.chnmuseum.party.mapper.LearningContentMapper;
import cn.chnmuseum.party.service.LearningContentService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * <p>
 * 学习内容 服务实现类
 * </p>
 *
 * @author Danny Lee
 * @since 2021-03-16
 */
@Service
public class LearningContentServiceImpl extends ServiceImpl<LearningContentMapper, LearningContent> implements LearningContentService {

}