SubjectTestGradeExampleMappingServiceImpl.java
644 Bytes
package com.meishu.service.impl;
import com.meishu.model.SubjectTestGradeExampleMappingDO;
import com.meishu.mapper.SubjectTestGradeExampleMappingMapper;
import com.meishu.service.SubjectTestGradeExampleMappingService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
/**
* <p>
* 样卷映射表 服务实现类
* </p>
*
* @author Tuyp
* @since 2021-06-21
*/
@Service
public class SubjectTestGradeExampleMappingServiceImpl extends ServiceImpl<SubjectTestGradeExampleMappingMapper, SubjectTestGradeExampleMappingDO> implements SubjectTestGradeExampleMappingService {
}