LearningContentAssetServiceImpl.java 573 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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 {

}