SubjectStudentAnswerStarServiceImpl.java 608 Bytes
package com.meishu.service.impl;

import com.meishu.model.SubjectStudentAnswerStarDO;
import com.meishu.mapper.SubjectStudentAnswerStarMapper;
import com.meishu.service.SubjectStudentAnswerStarService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;

/**
 * <p>
 * 学生答卷星级表 服务实现类
 * </p>
 *
 * @author Tuyp
 * @since 2021-05-13
 */
@Service
public class SubjectStudentAnswerStarServiceImpl extends ServiceImpl<SubjectStudentAnswerStarMapper, SubjectStudentAnswerStarDO> implements SubjectStudentAnswerStarService {

}