package cn.chnmuseum.party.service.impl;

import cn.chnmuseum.party.model.LearningContentBoardCat;
import cn.chnmuseum.party.mapper.LearningContentBoardCatMapper;
import cn.chnmuseum.party.service.LearningContentBoardCatService;
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 LearningContentBoardCatServiceImpl extends ServiceImpl<LearningContentBoardCatMapper, LearningContentBoardCat> implements LearningContentBoardCatService {

}