package cn.chnmuseum.party.service.impl; import cn.chnmuseum.party.mapper.LearningContentAssetMapper; import cn.chnmuseum.party.model.LearningContentAsset; import cn.chnmuseum.party.service.LearningContentAssetService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import org.springframework.stereotype.Service; /** * @description: * @author: nh * @create: 2021-06-22 09:57 **/ @Service public class LearningContentAssetServiceImpl extends ServiceImpl<LearningContentAssetMapper,LearningContentAsset> implements LearningContentAssetService { }