|
@@ -0,0 +1,16 @@
|
|
|
|
+package com.qmth.distributed.print.business.service.impl;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
+import com.qmth.distributed.print.business.entity.ExamPaperGroupMarker;
|
|
|
|
+import com.qmth.distributed.print.business.mapper.ExamPaperGroupMarkerMapper;
|
|
|
|
+import com.qmth.distributed.print.business.service.ExamPaperGroupMarkerService;
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @Description: 评卷员-分组关系服务实现类
|
|
|
|
+ * @Author: CaoZixuan
|
|
|
|
+ * @Date: 2022-04-13
|
|
|
|
+ */
|
|
|
|
+@Service
|
|
|
|
+public class ExamPaperGroupMarkerServiceImpl extends ServiceImpl<ExamPaperGroupMarkerMapper,ExamPaperGroupMarker> implements ExamPaperGroupMarkerService {
|
|
|
|
+}
|