Commit 9c5c1dba by huluobin

fix

parent bfd8dc22
...@@ -12,27 +12,33 @@ import com.gogirl.domain.user.investigation.*; ...@@ -12,27 +12,33 @@ import com.gogirl.domain.user.investigation.*;
import com.gogirl.infrastructure.mapper.user.investigation.BaseQuestionMapper; import com.gogirl.infrastructure.mapper.user.investigation.BaseQuestionMapper;
import com.gogirl.infrastructure.mapper.user.investigation.TestPaperCustomerMapMapper; import com.gogirl.infrastructure.mapper.user.investigation.TestPaperCustomerMapMapper;
import com.gogirl.infrastructure.mapper.user.investigation.TestPaperMapper; import com.gogirl.infrastructure.mapper.user.investigation.TestPaperMapper;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@Service @Service
@AllArgsConstructor
@Slf4j @Slf4j
public class BaseQuestionServiceImpl extends ServiceImpl<BaseQuestionMapper, BaseQuestion> implements BaseQuestionService { public class BaseQuestionServiceImpl extends ServiceImpl<BaseQuestionMapper, BaseQuestion> implements BaseQuestionService {
private final BaseQuestionMapper baseQuestionMapper; @Resource
private final TestPaperMapper testPaperMapper; private BaseQuestionMapper baseQuestionMapper;
private final TestPaperCustomerMapMapper testPaperCustomerMapMapper; @Resource
private final TestPaperQuestionService testPaperQuestionService; private TestPaperMapper testPaperMapper;
private final OrderQuestionOptionService orderQuestionOptionService; @Resource
private final ComplaintMainService complaintMainService; private TestPaperCustomerMapMapper testPaperCustomerMapMapper;
@Resource
private final CouponService couponService; private TestPaperQuestionService testPaperQuestionService;
@Resource
private OrderQuestionOptionService orderQuestionOptionService;
@Resource
private ComplaintMainService complaintMainService;
@Resource
private CouponService couponService;
@Override @Override
public List<BaseQuestion> getTestPaper(Integer currentCustomerId) { public List<BaseQuestion> getTestPaper(Integer currentCustomerId) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment