LearningContentService.java 340 Bytes
Newer Older
liqin's avatar
liqin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package cn.wisenergy.chnmuseum.party.service;

import cn.wisenergy.chnmuseum.party.model.LearningContent;
import com.baomidou.mybatisplus.extension.service.IService;

/**
 * <p>
 * 学习内容 服务类
 * </p>
 *
 * @author Danny Lee
 * @since 2021-03-16
 */
public interface LearningContentService extends IService<LearningContent> {

}