Blame view

SubjectTestStudentAnswerServiceImpl.java 605 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.meishu.service.impl;

import com.meishu.model.SubjectTestStudentAnswerDO;
import com.meishu.mapper.SubjectTestStudentAnswerMapper;
import com.meishu.service.SubjectTestStudentAnswerService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * <p>
 * 学生月考答卷 服务实现类
 * </p>
 *
 * @author Tuyp
 * @since 2021-05-13
 */
@Service
public class SubjectTestStudentAnswerServiceImpl extends ServiceImpl<SubjectTestStudentAnswerMapper, SubjectTestStudentAnswerDO> implements SubjectTestStudentAnswerService {

}