SubjectStarTreeMappingServiceImpl.java
598 Bytes
package com.meishu.service.impl;
import com.meishu.model.SubjectStarTreeMappingDO;
import com.meishu.mapper.SubjectStarTreeMappingMapper;
import com.meishu.service.SubjectStarTreeMappingService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 测评-知识点关联表 服务实现类
* </p>
*
* @author Tuyp
* @since 2021-05-06
*/
@Service
public class SubjectStarTreeMappingServiceImpl extends ServiceImpl<SubjectStarTreeMappingMapper, SubjectStarTreeMappingDO> implements SubjectStarTreeMappingService {
}