|
@@ -0,0 +1,24 @@
|
|
|
+/*
|
|
|
+ * *************************************************
|
|
|
+ * Copyright (c) 2018 QMTH. All Rights Reserved.
|
|
|
+ * Created by Deason on 2018-10-22 15:30:57.
|
|
|
+ * *************************************************
|
|
|
+ */
|
|
|
+
|
|
|
+package cn.com.qmth.examcloud.core.print.service.impl;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.core.print.repository.SubjectiveQuestionStructureRepository;
|
|
|
+import cn.com.qmth.examcloud.core.print.service.SubjectiveQuestionStructureService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: fengdesheng
|
|
|
+ * @since: 2018/10/17
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class SubjectiveQuestionStructureServiceImpl implements SubjectiveQuestionStructureService {
|
|
|
+ @Autowired
|
|
|
+ private SubjectiveQuestionStructureRepository subjectiveQuestionStructureRepository;
|
|
|
+
|
|
|
+}
|