OnLineExamService.java 643 B

12345678910111213141516171819202122232425
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-16 17:49:59.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.service;
  8. import org.slf4j.Logger;
  9. import org.slf4j.LoggerFactory;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.stereotype.Service;
  12. /**
  13. * 网考业务服务接口
  14. */
  15. @Service
  16. public class OnLineExamService {
  17. private static Logger log = LoggerFactory.getLogger(OnLineExamService.class);
  18. @Autowired
  19. private PropertyService propertyService;
  20. }